Skip to content
Snippets Groups Projects
Commit 4f05c0d7 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

adjusted docker container startup to 1) remember logs in case of failure, and...

adjusted docker container startup to 1) remember logs in case of failure, and 2) give postgres some time to startup.  this is in response to undiagnosable and intermittent failures seen in starting up the turbo container.
parent 5b4592d7
No related branches found
No related tags found
No related merge requests found
Pipeline #5876 failed
......@@ -7,10 +7,12 @@ main()
cd /turbo
source ./set_env_vars
sleep 10 # let postgres start
cd /tmp
/turbo/bin/turbod.exe &
sleep 10
/turbo/bin/prepd.exe
/turbo/bin/turbod.exe > /tmp/turbod.log 2>&1 &
sleep 10 # let turbod start
/turbo/bin/prepd.exe > /tmp/prepd.log 2>&1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment