Skip to content

Commit b0c0082

Browse files
update get started workshop (#21139)
Signed-off-by: Craig <[email protected]>
1 parent 75f72ca commit b0c0082

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

content/get-started/workshop/06_bind_mounts.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ filesystem you can share with containers. For details about accessing the settin
5959
bind mount.
6060

6161
{{< tabs >}}
62-
{{< tab name="Mac / Linux / PowerShell" >}}
62+
{{< tab name="Mac / Linux" >}}
6363

6464
```console
6565
$ 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
7979
$ docker run -it --mount type=bind,src="/$(pwd)",target=/src ubuntu bash
8080
```
8181

82+
{{< /tab >}}
83+
{{< tab name="PowerShell" >}}
84+
85+
```console
86+
$ docker run -it --mount "type=bind,src=$($pwd),target=/src" ubuntu bash
87+
```
88+
8289
{{< /tab >}}
8390
{{< /tabs >}}
8491

0 commit comments

Comments
 (0)