Skip to content

Commit

Permalink
Merge pull request #8382 from dbaker-rh/helppage
Browse files Browse the repository at this point in the history
[CI:DOCS] Fix example for manifest push
  • Loading branch information
openshift-merge-robot authored Nov 18, 2020
2 parents 4bbf2b6 + bd104d2 commit a6f7afd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/podman/manifest/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var (
podman manifest create localhost/list
podman manifest inspect localhost/list
podman manifest annotate --annotation left=right mylist:v1.11 image:v1.11-amd64
podman manifest push mylist:v1.11 quay.io/myimagelist
podman manifest push mylist:v1.11 docker://quay.io/myuser/image:v1.11
podman manifest remove mylist:v1.11 sha256:15352d97781ffdf357bf3459c037be3efac4133dc9070c2dce7eca7c05c3e736`,
}
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/podman/manifest/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var (
Short: "Push a manifest list or image index to a registry",
Long: "Pushes manifest lists and image indexes to registries.",
RunE: push,
Example: `podman manifest push mylist:v1.11 quay.io/myimagelist`,
Example: `podman manifest push mylist:v1.11 docker://quay.io/myuser/image:v1.11`,
Args: cobra.ExactArgs(2),
ValidArgsFunction: common.AutocompleteImages,
}
Expand Down

0 comments on commit a6f7afd

Please sign in to comment.