-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
55 lines (52 loc) · 1.17 KB
/
docker-compose.yml
File metadata and controls
55 lines (52 loc) · 1.17 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
services:
frontend:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "80:80"
networks:
- tasknetwork
depends_on:
- backend
# env_file:
# - ./frontend/.env
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:80"]
interval: 30s
timeout: 10s
retries: 3
backend:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
networks:
- tasknetwork
depends_on:
- syncserver
env_file:
- ./backend/.env
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:8000/health"]
interval: 30s
timeout: 10s
retries: 3
volumes:
- ./backend/data:/app/data
syncserver:
image: ghcr.io/gothenburgbitfactory/taskchampion-sync-server:latest
ports:
- "8080:8080"
networks:
- tasknetwork
healthcheck:
# Note: taskchampion-sync-server doesn't have a /health endpoint, use root
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:8080/"]
interval: 30s
timeout: 10s
retries: 3
networks:
tasknetwork:
driver: bridge