Browse Source

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

Kristian Vos 2 years ago
parent
commit
a50df37c68
1 changed files with 1 additions and 1 deletions
  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} \