+6
-6
docker-compose.yml
docker-compose.prod.yml
+6
-6
docker-compose.yml
docker-compose.prod.yml
···
19
19
PRIVATE_KEYS: "${PRIVATE_KEYS:?PRIVATE_KEYS is required}"
20
20
COOKIE_SECRET: "${COOKIE_SECRET:?COOKIE_SECRET is required}"
21
21
healthcheck:
22
-
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8002/health"]
23
-
interval: 30s
24
-
timeout: 10s
25
-
retries: 3
26
-
start_period: 10s
22
+
test: ["CMD", "wget", "-q", "--spider", "http://localhost:8002/health"]
23
+
interval: 30s
24
+
timeout: 10s
25
+
retries: 3
26
+
start_period: 10s
27
27
28
28
tapper:
29
29
container_name: tapper
···
71
71
- 5432:5432
72
72
73
73
volumes:
74
-
- './postgres-data:/var/lib/postgresql/data'
74
+
- "postgres-data:/var/lib/postgresql/data"
75
75
76
76
volumes:
77
77
postgres-data: