Update docker-load documentation

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Upstream-commit: 9b5e0ea7dedac3c1cbbaf6770aa6834c8e7b7774
Component: engine
This commit is contained in:
Vincent Demeester
2016-06-08 17:40:37 +02:00
parent a3be33ddb5
commit 5988d92124
2 changed files with 19 additions and 4 deletions

View File

@ -12,11 +12,12 @@ parent = "smn_cli"
Usage: docker load [OPTIONS]
Load an image from a tar archive or STDIN
Load an image from a tar archive or STDIN and shows image names or
IDs imported.
--help Print usage
-i, --input="" Read from a tar archive file, instead of STDIN. The tarball may be compressed with gzip, bzip, or xz
-q, --quiet Suppress the load output. Without this option, a progress bar is displayed.
-q, --quiet Suppress the load progress bar but still outputs the imported images
Loads a tarred repository from a file or the standard input stream.
Restores both images and tags.
@ -24,10 +25,17 @@ Restores both images and tags.
$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
$ docker load < busybox.tar.gz
# […]
Loaded image: busybox:latest
$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 769b9341d937 7 weeks ago 2.489 MB
$ docker load --input fedora.tar
# […]
Loaded image: fedora:rawhide
# […]
Loaded image: fedora:20
# […]
$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 769b9341d937 7 weeks ago 2.489 MB