From 77b9a6a3e75ea1b93e95396fdbf0e2581386fed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Fri, 8 Jun 2018 18:33:45 -0400 Subject: [PATCH] Fix major MySQL db connection bug MySQL configuration file was in the wrong format. As a consequence, no root user was created after running the mysql image for the first time. --- config/mysql/templates/auth.env.templ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mysql/templates/auth.env.templ b/config/mysql/templates/auth.env.templ index 8faa532..f2e4dae 100644 --- a/config/mysql/templates/auth.env.templ +++ b/config/mysql/templates/auth.env.templ @@ -1 +1 @@ -MYSQL_ROOT_PASSWORD: ${MYSQL_PASSWORD} +MYSQL_ROOT_PASSWORD=${MYSQL_PASSWORD}