From 98f5a4e761b657ebdcbfee485fde7a5e7e92c8c6 Mon Sep 17 00:00:00 2001 From: Victor Moraes Date: Mon, 15 Mar 2021 12:29:29 -0300 Subject: [PATCH] update 07_multi_container.md: add -u root to mysql user login didnt work, so it's needed to specify user: root:secret. docker exec -it mysql -u root -p --- get-started/07_multi_container.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/07_multi_container.md b/get-started/07_multi_container.md index 637dd7109a..0814686c3b 100644 --- a/get-started/07_multi_container.md +++ b/get-started/07_multi_container.md @@ -74,7 +74,7 @@ For now, we will create the network first and attach the MySQL container at star 3. To confirm we have the database up and running, connect to the database and verify it connects. ```bash - docker exec -it mysql -p + docker exec -it mysql -u root -p ``` When the password prompt comes up, type in **secret**. In the MySQL shell, list the databases and verify