1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-12 10:45:14 +02:00

Add until to hopefully stop race condition

This commit is contained in:
andryyy 2017-06-12 23:49:21 +02:00
parent a33aa7a2cb
commit 35a73025c7

View File

@ -1,5 +1,9 @@
#!/bin/bash
until mysqladmin ping --host mysql --silent; do
sleep 1
done
# Wait for MySQL to warm-up
while mysqladmin ping --host mysql --silent; do