From cd5615c3da190b1f44e54c5105b6d937251eed72 Mon Sep 17 00:00:00 2001 From: alatos2 Date: Sat, 28 Mar 2026 19:25:16 +0000 Subject: [PATCH] docs: changed '/.' to './' in bind_mounts under the git bash tab Signed-off-by: alatos2 --- content/get-started/workshop/06_bind_mounts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/get-started/workshop/06_bind_mounts.md b/content/get-started/workshop/06_bind_mounts.md index f122b0cb748e..a664b5e7f575 100644 --- a/content/get-started/workshop/06_bind_mounts.md +++ b/content/get-started/workshop/06_bind_mounts.md @@ -79,7 +79,7 @@ filesystem you can share with containers. For details about accessing the settin {{< tab name="Git Bash" >}} ```console - $ docker run -it --mount type=bind,src="/.",target=/src ubuntu bash + $ docker run -it --mount type=bind,src="./",target=/src ubuntu bash ``` {{< /tab >}} @@ -318,7 +318,7 @@ You can use the CLI or Docker Desktop to run your container with a bind mount. ```console $ docker run -dp 127.0.0.1:3000:3000 \ - -w //app --mount type=bind,src="/.",target=/app \ + -w //app --mount type=bind,src="./",target=/app \ node:24-alpine \ sh -c "npm install && npm run dev" ```