From 5abe931855aefe50365f3798d0d9ed31fbcfe776 Mon Sep 17 00:00:00 2001 From: Pushpa Raj Bhatta Date: Sat, 26 Feb 2022 00:41:12 +0545 Subject: [PATCH] Update index.md Bash code preview is breaking on line 75. Updated line 75 to it. --- docs/tutorial/multi-container-apps/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/multi-container-apps/index.md b/docs/tutorial/multi-container-apps/index.md index d6adecd..462ec6a 100644 --- a/docs/tutorial/multi-container-apps/index.md +++ b/docs/tutorial/multi-container-apps/index.md @@ -72,7 +72,7 @@ For now, we will create the network first and attach the MySQL container at star architecture than amd64, which is the only supported architecture for the mysql image at the moment. To solve this add the flag `--platform linux/amd64` in the previous command. So your new command should look like this: - ```bash + ```bash docker run -d \ --network todo-app --network-alias mysql --platform linux/amd64 \ -v todo-mysql-data:/var/lib/mysql \