mirror of https://github.com/docker/compose.git
Merge pull request #7045 from ndeloof/command_suggest
Suggested command is invalid
This commit is contained in:
commit
eb20915c6e
|
@ -1201,7 +1201,7 @@ def image_digests_for_project(project):
|
||||||
|
|
||||||
if e.needs_push:
|
if e.needs_push:
|
||||||
command_hint = (
|
command_hint = (
|
||||||
"Use `docker-compose push {}` to push them. "
|
"Use `docker push {}` to push them. "
|
||||||
.format(" ".join(sorted(e.needs_push)))
|
.format(" ".join(sorted(e.needs_push)))
|
||||||
)
|
)
|
||||||
paras += [
|
paras += [
|
||||||
|
@ -1212,7 +1212,7 @@ def image_digests_for_project(project):
|
||||||
|
|
||||||
if e.needs_pull:
|
if e.needs_pull:
|
||||||
command_hint = (
|
command_hint = (
|
||||||
"Use `docker-compose pull {}` to pull them. "
|
"Use `docker pull {}` to pull them. "
|
||||||
.format(" ".join(sorted(e.needs_pull)))
|
.format(" ".join(sorted(e.needs_pull)))
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue