forked from rolevax/ih
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
61 lines (59 loc) · 1.13 KB
/
docker-compose.yml
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
version: "3"
services:
db:
image: postgres
volumes:
- /etc/localtime:/etc/localtime:ro
- ./harue/persist:/var/lib/postgresql/data
- ./harue/initdb:/docker-entrypoint-initdb.d
logging:
options:
max-size: 16m
redis:
image: redis
volumes:
- /etc/localtime:/etc/localtime:ro
- ./harue/cache:/data
logging:
options:
max-size: 16m
teru:
image: rolevax/teru
ports:
- 8080:8080
volumes:
- /etc/localtime:/etc/localtime:ro
- ./harue/res:/srv:ro
depends_on:
- db
- redis
logging:
options:
max-size: 16m
toki:
image: rolevax/toki
volumes:
- /etc/localtime:/etc/localtime:ro
deploy:
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 3
window: 3s
logging:
options:
max-size: 16m
hisa:
image: rolevax/hisa
ports:
- 6171:6171
volumes:
- /etc/localtime:/etc/localtime:ro
- ./harue/res:/srv:ro
depends_on:
- db
- redis
- toki
logging:
options:
max-size: 16m