Update 06_bind_mounts.md

--mount takes in a few key-value pairs and its`type=bind` that specifies that the volume is bind mount.
This commit is contained in:
Ativerc 2024-03-15 00:49:19 +05:30 committed by GitHub
parent d0b3e09715
commit e2e03568fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ setting, see the topic for [Mac](../desktop/settings/mac.md/#file-sharing),
{{< /tab >}}
{{< /tabs >}}
The `--mount` option tells Docker to create a bind mount, where `src` is the
The `--mount type=bind` option tells Docker to create a bind mount, where `src` is the
current working directory on your host machine (`getting-started-app`), and
`target` is where that directory should appear inside the container (`/src`).