瀏覽代碼

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} \