Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions content/get-started/06_bind_mounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 >}}

Expand Down Expand Up @@ -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" >}}
{{< button text="Multi container apps" url="07_multi_container.md" >}}