diff --git a/content/get-started/workshop/06_bind_mounts.md b/content/get-started/workshop/06_bind_mounts.md index 9f2a2009877..8a825759c73 100644 --- a/content/get-started/workshop/06_bind_mounts.md +++ b/content/get-started/workshop/06_bind_mounts.md @@ -59,7 +59,7 @@ filesystem you can share with containers. For details about accessing the settin bind mount. {{< tabs >}} - {{< tab name="Mac / Linux / PowerShell" >}} + {{< tab name="Mac / Linux" >}} ```console $ docker run -it --mount type=bind,src="$(pwd)",target=/src ubuntu bash @@ -79,6 +79,13 @@ filesystem you can share with containers. For details about accessing the settin $ docker run -it --mount type=bind,src="/$(pwd)",target=/src ubuntu bash ``` + {{< /tab >}} + {{< tab name="PowerShell" >}} + + ```console + $ docker run -it --mount "type=bind,src=$($pwd),target=/src" ubuntu bash + ``` + {{< /tab >}} {{< /tabs >}}