From 37e6e6e1871e26e1bd61eae7b1bf7ee6c55f5f7c Mon Sep 17 00:00:00 2001 From: Xiaodong Dai <496690324@qq.com> Date: Wed, 19 Apr 2017 19:46:58 +0800 Subject: [PATCH] Fix the file name in the command (#2899) According to the context, this file name is incorrect. The correct file name should be: docker-compose.yml --- get-started/part5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get-started/part5.md b/get-started/part5.md index 596387d6e0..773e9773ad 100644 --- a/get-started/part5.md +++ b/get-started/part5.md @@ -208,7 +208,7 @@ the new `docker-compose.yml` file with `docker-machine scp`, and run ``` $ docker-machine ssh myvm1 "mkdir ./data" -$ docker-machine scp compose-file.yml myvm1:~ +$ docker-machine scp docker-compose.yml myvm1:~ $ docker-machine ssh myvm1 "docker stack deploy -c docker-compose.yml getstartedlab" ```