Skip to content

Commit

Permalink
Merge branch 'bugfix/14-invalid-rest-option' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
senssei committed Aug 21, 2018
2 parents 7f55bba + e5b2822 commit 8606789
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.cnf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ services:
image: mongo
ports:
- "30002:27017"
command: mongod --replSet cnf-serv --rest --configsvr --port 27017 --oplogSize 16 --noprealloc --smallfiles
command: mongod --replSet cnf-serv --configsvr --port 27017 --oplogSize 16 --noprealloc --smallfiles
restart: always

mongo-cnf-3:
container_name: "mongo-cnf-3"
image: mongo
ports:
- "30003:27017"
command: mongod --replSet cnf-serv --rest --configsvr --port 27017 --oplogSize 16 --noprealloc --smallfiles
command: mongod --replSet cnf-serv --configsvr --port 27017 --oplogSize 16 --noprealloc --smallfiles
restart: always

mongo-cnf-1:
container_name: "mongo-cnf-1"
image: mongo
ports:
- "30001:27017"
command: mongod --replSet cnf-serv --rest --configsvr --port 27017 --oplogSize 16 --noprealloc --smallfiles
command: mongod --replSet cnf-serv --configsvr --port 27017 --oplogSize 16 --noprealloc --smallfiles
links:
- mongo-cnf-2:mongo-cnf-2
- mongo-cnf-3:mongo-cnf-3
Expand Down

0 comments on commit 8606789

Please sign in to comment.