We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ab983b + cd5615c commit 2695644Copy full SHA for 2695644
1 file changed
content/get-started/workshop/06_bind_mounts.md
@@ -79,7 +79,7 @@ filesystem you can share with containers. For details about accessing the settin
79
{{< tab name="Git Bash" >}}
80
81
```console
82
- $ docker run -it --mount type=bind,src="/.",target=/src ubuntu bash
+ $ docker run -it --mount type=bind,src="./",target=/src ubuntu bash
83
```
84
85
{{< /tab >}}
@@ -318,7 +318,7 @@ You can use the CLI or Docker Desktop to run your container with a bind mount.
318
319
320
$ docker run -dp 127.0.0.1:3000:3000 \
321
- -w //app --mount type=bind,src="/.",target=/app \
+ -w //app --mount type=bind,src="./",target=/app \
322
node:24-alpine \
323
sh -c "npm install && npm run dev"
324
0 commit comments