-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose_dev.yml
More file actions
63 lines (63 loc) · 1.3 KB
/
docker-compose_dev.yml
File metadata and controls
63 lines (63 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
services:
open-precision:
build:
context: .
target: runtime
dockerfile: Dockerfile_dev
tags:
- larsjaeger/open_precision:dev
x-bake:
platforms:
- linux/amd64
- linux/arm64
image: larsjaeger/open_precision:dev
restart: always
privileged: true
ports:
- "8000:8000"
volumes:
- config:/app/config
- type: bind
source: ./logs
target: /app/logs
networks:
- internal
devices:
- "/dev/ttyUSB0:/dev/ttyUSB0"
- "/dev/ttyUSB1:/dev/ttyUSB1"
- "/dev/ttyUSB2:/dev/ttyUSB2"
- "/dev/i2c-2:/dev/i2c-2"
environment:
- TRACER_ENTRIES=1000000
redis:
image: redis:alpine
restart: unless-stopped
expose:
- 6379
networks:
- internal
command: redis-server --loglevel warning
neo4j:
image: neo4j:5.10-community
restart: always
environment:
- NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
- NEO4J_AUTH=neo4j/password
- 'NEO4J_PLUGINS=["apoc"]'
ports:
- "7474:7474"
- "7473:7473"
- "7687:7687"
networks:
- internal
volumes:
- neo4j-data:/data
- neo4j-plugins:/plugins
- neo4j-logs:/logs
networks:
internal:
volumes:
neo4j-data:
neo4j-plugins:
neo4j-logs:
config: