From 76e992022ace0e6964e0a4a00e85a3acadba6bc2 Mon Sep 17 00:00:00 2001 From: MysticRyuujin Date: Mon, 7 Jun 2021 14:48:33 -0500 Subject: [PATCH] Possible fix for #183 --- docker-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-install.sh b/docker-install.sh index fd228a5..f11217d 100755 --- a/docker-install.sh +++ b/docker-install.sh @@ -95,7 +95,7 @@ docker run --restart=always --detach --name=mysql --env="MYSQL_ROOT_PASSWORD=$my # Wait for the MySQL Health Check equal "healthy" echo "Waiting for MySQL to be healthy" -until [ "`/usr/bin/docker inspect -f {{.State.Health.Status}} mysql`"=="healthy" ]; do +until [ "$(/usr/bin/docker inspect -f {{.State.Health.Status}} mysql)" == "healthy" ]; do sleep 0.1; done;