Skip to content

Commit

Permalink
update get started workshop
Browse files Browse the repository at this point in the history
Signed-off-by: Craig <craig.osterhout@docker.com>
  • Loading branch information
craig-osterhout committed Oct 16, 2024
1 parent 75f72ca commit 7156265
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion content/get-started/workshop/06_bind_mounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 >}}

Expand Down

0 comments on commit 7156265

Please sign in to comment.