Skip to content

Commit

Permalink
#14 Invalid --rest parameters on mongo-cnf
Browse files Browse the repository at this point in the history
  • Loading branch information
senssei committed Aug 21, 2018
1 parent 5868490 commit e5b2822
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 e5b2822

Please sign in to comment.