diff --git a/compose/cli/main.py b/compose/cli/main.py index f0fbe6437..3f0f88384 100644 --- a/compose/cli/main.py +++ b/compose/cli/main.py @@ -1201,7 +1201,7 @@ def image_digests_for_project(project): 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 += [ @@ -1212,7 +1212,7 @@ def image_digests_for_project(project): 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))) )