From 657bdef6ff1d31dfca63e10e66a4394fd9d350ae Mon Sep 17 00:00:00 2001 From: Nicolas De Loof Date: Fri, 22 Nov 2019 09:24:33 +0100 Subject: [PATCH] Suggested command is invalid Signed-off-by: Nicolas De Loof --- compose/cli/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compose/cli/main.py b/compose/cli/main.py index fde4fd035..838d9128f 100644 --- a/compose/cli/main.py +++ b/compose/cli/main.py @@ -1230,7 +1230,7 @@ def image_digests_for_project(project, allow_push=False): if e.needs_push: command_hint = ( - "Use `docker-compose push {}` to push them. " + "Use `docker push {}` to push them. " .format(" ".join(sorted(e.needs_push))) ) paras += [ @@ -1241,7 +1241,7 @@ def image_digests_for_project(project, allow_push=False): if e.needs_pull: command_hint = ( - "Use `docker-compose pull {}` to pull them. " + "Use `docker pull {}` to pull them. " .format(" ".join(sorted(e.needs_pull))) )