From 5bf13c7380b25c7a42bcbc4782f79af7114c96cd Mon Sep 17 00:00:00 2001 From: rolyli Date: Tue, 14 Sep 2021 01:04:15 +0100 Subject: [PATCH] Fix code block not being highlightable in the guide --- get-started/07_multi_container.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/get-started/07_multi_container.md b/get-started/07_multi_container.md index 3fc9929c4f..b255026550 100644 --- a/get-started/07_multi_container.md +++ b/get-started/07_multi_container.md @@ -56,7 +56,7 @@ For now, we will create the network first and attach the MySQL container at star If you are using PowerShell then use this command. - ```console + ```powershell PS> docker run -d ` --network todo-app --network-alias mysql ` -v todo-mysql-data:/var/lib/mysql ` @@ -194,7 +194,7 @@ With all of that explained, let's start our dev-ready container! If you are using PowerShell then use this command. - ```console + ```powershell PS> docker run -dp 3000:3000 ` -w /app -v "$(pwd):/app" ` --network todo-app `