From aaef73c84da9a62ba4e47586cd33a6fd14258472 Mon Sep 17 00:00:00 2001 From: Vladislav Otchenashev Date: Sat, 15 Sep 2018 16:16:37 +0300 Subject: [PATCH] fix typo (#1797) --- mysql/docker-entrypoint-initdb.d/createdb.sql.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/docker-entrypoint-initdb.d/createdb.sql.example b/mysql/docker-entrypoint-initdb.d/createdb.sql.example index 6420afb8..417ec10c 100644 --- a/mysql/docker-entrypoint-initdb.d/createdb.sql.example +++ b/mysql/docker-entrypoint-initdb.d/createdb.sql.example @@ -2,7 +2,7 @@ # Copy createdb.sql.example to createdb.sql # then uncomment then set database name and username to create you need databases # -# example: .env MYSQL_USER=appuser and need db name is myshop_db +# example: .env MYSQL_USER=appuser and needed db name is myshop_db # # CREATE DATABASE IF NOT EXISTS `myshop_db` ; # GRANT ALL ON `myshop_db`.* TO 'appuser'@'%' ;