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 bc13b57 commit 6849e0eCopy full SHA for 6849e0e
docker_entrypoint.sh
@@ -166,8 +166,12 @@ else
166
soroban_process=""
167
fi
168
169
-# Start node services
170
-/home/node/app/wait-for-it.sh 127.0.0.1:3306 --timeout=720 --strict -- pm2-runtime -u node --raw /home/node/app/pm2.config.cjs &
+# Start dojo
+if [ "$SOROBAN_INSTALL" = "on" ]; then
171
+ /home/node/app/wait-for-it.sh 127.0.0.1:4242 --timeout=720 --strict -- pm2-runtime -u node --raw /home/node/app/pm2.config.cjs &
172
+else
173
+ /home/node/app/wait-for-it.sh 127.0.0.1:3306 --timeout=720 --strict -- pm2-runtime -u node --raw /home/node/app/pm2.config.cjs &
174
+fi
175
backend_process=$!
176
177
# Start nginx
0 commit comments