-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (40 loc) · 887 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (40 loc) · 887 Bytes
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
version: "3"
services:
mongo1:
hostname: mongo1
container_name: localmongo1
image: mongo:4.1-xenial
expose:
- 27017
ports:
- 27017:27017
restart: always
entrypoint: [ "/usr/bin/mongod", "--bind_ip_all", "--replSet", "rs0" ]
networks:
- mongo_cluster
mongo2:
hostname: mongo2
container_name: localmongo2
image: mongo:4.1-xenial
expose:
- 27017
ports:
- 27018:27017
restart: always
entrypoint: [ "/usr/bin/mongod", "--bind_ip_all", "--replSet", "rs0" ]
networks:
- mongo_cluster
mongo3:
hostname: mongo3
container_name: localmongo3
image: mongo:4.1-xenial
expose:
- 27017
ports:
- 27019:27017
restart: always
entrypoint: [ "/usr/bin/mongod", "--bind_ip_all", "--replSet", "rs0" ]
networks:
- mongo_cluster
networks:
mongo_cluster: