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:
parent
a33aa7a2cb
commit
35a73025c7
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user