-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
71 lines (69 loc) · 1.38 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
61
62
63
64
65
66
67
68
69
70
71
version: '3.3'
networks:
net0:
driver: overlay
services:
reactive-demo:
deploy:
mode: replicated
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 720
update_config:
parallelism: 1
delay: 10s
failure_action: continue
monitor: 60s
max_failure_ratio: 0.3
replicas: 1
image: softleader/reactive-demo:latest
build: ./
restart: on-failure
ports:
- 8080:8080
environment:
SPRING_PROFILES_ACTIVE: docker
networks:
- net0
depends_on:
- mongo
mongo:
deploy:
mode: replicated
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 720
update_config:
parallelism: 1
delay: 10s
failure_action: continue
monitor: 60s
max_failure_ratio: 0.3
replicas: 1
image: mongo:latest
networks:
- net0
mongo-express:
deploy:
mode: replicated
restart_policy:
condition: on-failure
delay: 5s
max_attempts: 720
update_config:
parallelism: 1
delay: 10s
failure_action: continue
monitor: 60s
max_failure_ratio: 0.3
replicas: 1
image: mongo-express:latest
restart: always
ports:
- 8081:8081
networks:
- net0
depends_on:
- mongo