From e2e03568fec80076953b495dd65651c2d3face45 Mon Sep 17 00:00:00 2001 From: Ativerc Date: Fri, 15 Mar 2024 00:49:19 +0530 Subject: [PATCH] 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. --- content/get-started/06_bind_mounts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/06_bind_mounts.md b/content/get-started/06_bind_mounts.md index c4eb050cb3..1460288c7f 100644 --- a/content/get-started/06_bind_mounts.md +++ b/content/get-started/06_bind_mounts.md @@ -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`).