소스 검색

fix(setup-mongo): fixed issue with port being dynamic when it should be static

Kristian Vos 3 년 전
부모
커밋
a50df37c68
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/docker/setup-mongo.sh

+ 1 - 1
tools/docker/setup-mongo.sh

@@ -1,7 +1,7 @@
 #!/bin/bash
 
 mongo musare \
-        --port ${MONGO_PORT} \
+        --port 27017 \
         -u "admin" \
         --authenticationDatabase "admin" \
         -p ${MONGO_ROOT_PASSWORD} \