Explorar o código

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

Kristian Vos %!s(int64=3) %!d(string=hai) anos
pai
achega
a50df37c68
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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} \