From 217922ca382ae48e79e09841232909439f39c586 Mon Sep 17 00:00:00 2001 From: Armin Fatemi <53411971+arminshfatemi@users.noreply.github.com> Date: Thu, 5 Oct 2023 19:09:09 +0330 Subject: [PATCH] appending cmd tab in trying out bind mounts section to work Closes #18242 (#18243) * appending cmd tab in trying out bind mounts section to work --- content/get-started/06_bind_mounts.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/content/get-started/06_bind_mounts.md b/content/get-started/06_bind_mounts.md index 22771d3ac7..9aac29b92d 100644 --- a/content/get-started/06_bind_mounts.md +++ b/content/get-started/06_bind_mounts.md @@ -59,14 +59,21 @@ work. ``` {{< /tab >}} - {{< tab name="Windows" >}} + {{< tab name="Windows (PowerShell)" >}} - Run this command in PowerShell. ```powershell $ docker run -it --mount "type=bind,src=$pwd,target=/src" ubuntu bash ``` + {{< /tab >}} + {{< tab name="Windows (CMD)" >}} + + + ```Command Prompt + > docker run -it --mount "type=bind,src=%cd%,target=/src" ubuntu bash + ``` + {{< /tab >}} {{< /tabs >}} @@ -334,4 +341,4 @@ simplicity, you'll keep using a relational database and switch your application to use MySQL. But, how should you run MySQL? How do you allow the containers to talk to each other? You'll learn about that in the next section. -{{< button text="Multi container apps" url="07_multi_container.md" >}} \ No newline at end of file +{{< button text="Multi container apps" url="07_multi_container.md" >}}