From 19b3f62859cf2d77320fbdca8b938c4b804a1971 Mon Sep 17 00:00:00 2001 From: Sudarshan MG Date: Fri, 12 Apr 2024 11:06:06 +0530 Subject: [PATCH] Update 05_persisting_data.md An extra space space after: --mount type=volume,src=todo-db, gives the following error: invalid argument "type=volume,src=todo-db" for "--mount" flag: target is required See 'docker run --help'. --- content/get-started/05_persisting_data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/get-started/05_persisting_data.md b/content/get-started/05_persisting_data.md index 4d1d0097d1..0ed6ec90b9 100644 --- a/content/get-started/05_persisting_data.md +++ b/content/get-started/05_persisting_data.md @@ -111,7 +111,7 @@ You can create the volume and start the container using the CLI or Docker Deskto > If you're using Git Bash, you must use different syntax for this command. > > ```console - > $ docker run -dp 127.0.0.1:3000:3000 --mount type=volume,src=todo-db, target=//etc/todos getting-started + > $ docker run -dp 127.0.0.1:3000:3000 --mount type=volume,src=todo-db,target=//etc/todos getting-started > ``` > > For more details about Git Bash's syntax differences, see