From cf18d3063c1ef25e33fa1fa7acba8d90718d9c3c Mon Sep 17 00:00:00 2001 From: Nikos Nezeritis Date: Sat, 28 Sep 2024 14:24:59 +0200 Subject: [PATCH] Update Orchestration.md Change "docker create service..." to "docker service create..." I believe the latter is the correct syntax :). The former simply seems to try pulling an image called service and failing --- Orchestration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Orchestration.md b/Orchestration.md index 903e7be..ead4c5d 100644 --- a/Orchestration.md +++ b/Orchestration.md @@ -177,7 +177,7 @@ Yes ``` // for the nginx image -docker create service --replicas 3 --name nginx-web nginx +docker service create --replicas 3 --name nginx-web nginx ```