-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (45 loc) · 891 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (45 loc) · 891 Bytes
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
version: '3.8'
services:
subtrack:
build:
context: .
dockerfile: Dockerfile
container_name: subtrack-service
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
env_file:
- .env
volumes:
- subtrack-data:/data
environment:
- DB_PATH=/data/subtrack.db
ports:
- "${WEB_PORT:-8080}:${WEB_PORT:-8080}"
networks:
- subtrack-network
cli:
build:
context: .
dockerfile: Dockerfile
container_name: subtrack-cli
entrypoint: ["/root/subtrack-cli"]
env_file:
- .env
volumes:
- subtrack-data:/data
environment:
- DB_PATH=/data/subtrack.db
networks:
- subtrack-network
profiles:
- cli
volumes:
subtrack-data:
driver: local
networks:
subtrack-network:
driver: bridge