diff options
author | baude <bbaude@redhat.com> | 2018-02-15 10:33:18 -0600 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-15 17:18:08 +0000 |
commit | 409ed259c6b3ea9122c697e9e20b4b1572f485d1 (patch) | |
tree | 61c2c2107799eb542beb9f294796510bf1803578 /docs | |
parent | ce7a0171d156709bc8bbf2ac1138b8022bb08054 (diff) | |
download | podman-409ed259c6b3ea9122c697e9e20b4b1572f485d1.tar.gz podman-409ed259c6b3ea9122c697e9e20b4b1572f485d1.tar.bz2 podman-409ed259c6b3ea9122c697e9e20b4b1572f485d1.zip |
Return imageid from podman pull
When using podman to pull an image, print the image id after
the image is pulled.
Resolves issue #329
Signed-off-by: baude <bbaude@redhat.com>
Closes: #342
Approved by: rhatdan
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-pull.1.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/podman-pull.1.md b/docs/podman-pull.1.md index 1a1611fd0..f7b24995a 100644 --- a/docs/podman-pull.1.md +++ b/docs/podman-pull.1.md @@ -14,7 +14,8 @@ podman pull - Pull an image from a registry Copies an image from a registry onto the local machine. **podman pull** pulls an image from Docker Hub if a registry is not specified in the command line argument. If an image tag is not specified, **podman pull** defaults to the image with the -**latest** tag (if it exists) and pulls it. **podman pull** can also pull an image +**latest** tag (if it exists) and pulls it. After the image is pulled, podman will +print the full image ID. **podman pull** can also pull an image using its digest **podman pull [image]@[digest]**. **podman pull** can be used to pull images from archives and local storage using different transports. @@ -97,6 +98,7 @@ Copying config sha256:76da55c8019d7a47c347c0dceb7a6591144d232a7dd616242a367b8bed 1.48 KB / 1.48 KB [========================================================] 0s Writing manifest to image destination Storing signatures +04660052281190168dbb2362eb15bf7067a8dc642d2498055e0e72efa961a4b6 ``` ``` @@ -108,6 +110,7 @@ Copying config sha256:ad4686094d8f0186ec8249fc4917b71faa2c1030d7b5a025c29f26e19d 1.41 KB / 1.41 KB [========================================================] 0s Writing manifest to image destination Storing signatures +03290064078cb797f3e0a530e78c20c13dd22a3dd3adf84a5da2127b48df0438 ``` ``` @@ -119,6 +122,7 @@ Copying config sha256:ad4686094d8f0186ec8249fc4917b71faa2c1030d7b5a025c29f26e19d 1.41 KB / 1.41 KB [========================================================] 0s Writing manifest to image destination Storing signatures +03290064078cb797f3e0a530e78c20c13dd22a3dd3adf84a5da2127b48df0438 ``` ``` @@ -130,6 +134,7 @@ Copying config sha256:ad4686094d8f0186ec8249fc4917b71faa2c1030d7b5a025c29f26e19d 1.41 KB / 1.41 KB [========================================================] 0s Writing manifest to image destination Storing signatures +03290064078cb797f3e0a530e78c20c13dd22a3dd3adf84a5da2127b48df0438 ``` ## SEE ALSO |