|
@@ -123,7 +123,7 @@ done
|
|
|
log_f "Database OK"
|
|
|
|
|
|
log_f "Waiting for Nginx..."
|
|
|
-until $(curl --output /dev/null --silent --head --fail http://nginx:8081); do
|
|
|
+until $(curl --output /dev/null --silent --head --fail http://nginx.mailcowdockerized_mailcow-network:8081); do
|
|
|
sleep 2
|
|
|
done
|
|
|
log_f "Nginx OK"
|
|
@@ -137,7 +137,7 @@ log_f "Resolver OK"
|
|
|
# Waiting for domain table
|
|
|
log_f "Waiting for domain table..."
|
|
|
while [[ -z ${DOMAIN_TABLE} ]]; do
|
|
|
- curl --silent http://nginx/ >/dev/null 2>&1
|
|
|
+ curl --silent http://nginx.mailcowdockerized_mailcow-network/ >/dev/null 2>&1
|
|
|
DOMAIN_TABLE=$(mysql --socket=/var/run/mysqld/mysqld.sock -u ${DBUSER} -p${DBPASS} ${DBNAME} -e "SHOW TABLES LIKE 'domain'" -Bs)
|
|
|
[[ -z ${DOMAIN_TABLE} ]] && sleep 10
|
|
|
done
|