Skip to content

Commit 2695644

Browse files
authored
Merge pull request #24560 from alatos2/fix-typo-in-bind_mount-docs
Fix: Corrected /. to ./ in bind_mounts under the git bash tab in bind mounts docs
2 parents 7ab983b + cd5615c commit 2695644

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ filesystem you can share with containers. For details about accessing the settin
7979
{{< tab name="Git Bash" >}}
8080

8181
```console
82-
$ docker run -it --mount type=bind,src="/.",target=/src ubuntu bash
82+
$ docker run -it --mount type=bind,src="./",target=/src ubuntu bash
8383
```
8484

8585
{{< /tab >}}
@@ -318,7 +318,7 @@ You can use the CLI or Docker Desktop to run your container with a bind mount.
318318

319319
```console
320320
$ docker run -dp 127.0.0.1:3000:3000 \
321-
-w //app --mount type=bind,src="/.",target=/app \
321+
-w //app --mount type=bind,src="./",target=/app \
322322
node:24-alpine \
323323
sh -c "npm install && npm run dev"
324324
```

0 commit comments

Comments
 (0)