We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5981b50 commit 9d6f138Copy full SHA for 9d6f138
deploy/docker/all-in-one/entrypoint.sh
@@ -25,6 +25,11 @@ else
25
export MONGO_LISTEN_HOST="127.0.0.1"
26
fi;
27
28
+# Set the default mongodb connection string if not set explicitly
29
+if [ -z "${LOWCODER_MONGODB_URL}" ]; then
30
+ export LOWCODER_MONGODB_URL="mongodb://localhost:27017/lowcoder?authSource=admin"
31
+fi;
32
+
33
LOGS="/lowcoder-stacks/logs"
34
DATA="/lowcoder-stacks/data"
35
CERT="/lowcoder-stacks/ssl"
0 commit comments