-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
49 lines (45 loc) · 1.04 KB
/
docker-compose.yaml
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'
services:
attainments_sanctuary:
container_name: attainments_sanctuary
image: h0d0user/attainments_sanctuary:latest
pull_policy: always
restart: always
networks:
- etl
ports:
- "8888:8888"
healthcheck:
test: "curl http://attainments_sanctuary:8888/healthcheck | jq -r '.healthcheck'"
start_period: 5s
interval: 5s
timeout: 5s
retries: 20
epistolary:
container_name: epistolary
image: h0d0user/epistolary:latest
pull_policy: always
restart: always
networks:
- etl
hostname: epistolary
depends_on:
attainments_sanctuary:
condition: service_healthy
volumes:
- "./settings.toml:/opt/settings.toml"
datapath:
container_name: datapath
image: h0d0user/datapath:latest
pull_policy: always
restart: always
networks:
- etl
hostname: datapath
depends_on:
attainments_sanctuary:
condition: service_healthy
volumes:
- "./settings.toml:/opt/settings.toml"
networks:
etl: