-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
67 lines (64 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
version: '3.8'
name: replica-set
services:
mongo1:
container_name: mongo1
image: mongo:6.0.5
volumes:
- ./mongodb/config/:/config/
- ./mongodb/data/rs1/:/data/
networks:
- mongors-network
ports:
- 27021:27017
links:
- mongo2
- mongo3
restart: always
# enable file permission
entrypoint: [ "bash", "/config/entrypoint.sh" ]
deploy:
restart_policy:
condition: on-failure
delay: 3s
max_attempts: 5
window: 60s
mongo2:
container_name: mongo2
image: mongo:6.0.5
volumes:
- ./mongodb/config/:/config
- ./mongodb/data/rs2/:/data
networks:
- mongors-network
ports:
- 27022:27017
restart: always
entrypoint: [ "/usr/bin/mongod", "--config", "/config/mongod.cfg" ]
deploy:
restart_policy:
condition: on-failure
delay: 3s
max_attempts: 5
window: 60s
mongo3:
container_name: mongo3
image: mongo:6.0.5
volumes:
- ./mongodb/config/:/config
- ./mongodb/data/rs3/:/data
networks:
- mongors-network
ports:
- 27023:27017
restart: always
entrypoint: [ "/usr/bin/mongod", "--config", "/config/mongod.cfg" ]
deploy:
restart_policy:
condition: on-failure
delay: 3s
max_attempts: 5
window: 60s
networks:
mongors-network:
driver: bridge