From e5b2822c8d0057aabd3314c31d99321dcaf9c318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Warzycha?= Date: Tue, 21 Aug 2018 10:00:09 +0200 Subject: [PATCH] #14 Invalid `--rest` parameters on `mongo-cnf` --- docker-compose.cnf.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.cnf.yml b/docker-compose.cnf.yml index f2fbc37..23320e7 100644 --- a/docker-compose.cnf.yml +++ b/docker-compose.cnf.yml @@ -5,7 +5,7 @@ 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: @@ -13,7 +13,7 @@ services: 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: @@ -21,7 +21,7 @@ services: 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