From 7156265a4e6aa1eba8d5abe25a225adec3fbfe25 Mon Sep 17 00:00:00 2001 From: Craig Date: Wed, 16 Oct 2024 11:04:56 -0700 Subject: [PATCH] update get started workshop Signed-off-by: Craig --- content/get-started/workshop/06_bind_mounts.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 >}}