Skip to content
Snippets Groups Projects
Verified Commit d8eb41cf authored by Quentin Duchemin's avatar Quentin Duchemin
Browse files

[Etherpad] Fix entrypoint

parent 0a912f81
No related branches found
No related tags found
No related merge requests found
Pipeline #61633 waiting for manual action
......@@ -22,7 +22,7 @@ if [ -z "${DB_HOST}" ]; then
exit 1
fi
while ! mysqladmin ping -u${DB_USER} -p${DB_PASSWORD} -h"${DB_HOST} &>/dev/null"; do
while ! mysqladmin ping -u${DB_USER} -p${DB_PASSWORD} -h"${DB_HOST}" &>/dev/null; do
echo "Database server not ready yet, re-trying in 5 seconds..."
sleep 5
done
......
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