Update docker-load documentation

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2016-06-08 17:40:37 +02:00 committed by Tibor Vass
parent bb0afa7381
commit 478055c89c
2 changed files with 19 additions and 4 deletions

View File

@ -12,11 +12,12 @@ parent = "smn_cli"
Usage: docker load [OPTIONS] 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 --help Print usage
-i, --input="" Read from a tar archive file, instead of STDIN. The tarball may be compressed with gzip, bzip, or xz -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. Loads a tarred repository from a file or the standard input stream.
Restores both images and tags. Restores both images and tags.
@ -24,10 +25,17 @@ Restores both images and tags.
$ docker images $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE REPOSITORY TAG IMAGE ID CREATED SIZE
$ docker load < busybox.tar.gz $ docker load < busybox.tar.gz
# […]
Loaded image: busybox:latest
$ docker images $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 769b9341d937 7 weeks ago 2.489 MB busybox latest 769b9341d937 7 weeks ago 2.489 MB
$ docker load --input fedora.tar $ docker load --input fedora.tar
# […]
Loaded image: fedora:rawhide
# […]
Loaded image: fedora:20
# […]
$ docker images $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 769b9341d937 7 weeks ago 2.489 MB busybox latest 769b9341d937 7 weeks ago 2.489 MB

View File

@ -13,7 +13,8 @@ docker-load - Load an image from a tar archive or STDIN
# DESCRIPTION # DESCRIPTION
Loads a tarred repository from a file or the standard input stream. Loads a tarred repository from a file or the standard input stream.
Restores both images and tags. Restores both images and tags. Write image names or IDs imported it
standard output stream.
# OPTIONS # OPTIONS
**--help** **--help**
@ -23,7 +24,7 @@ Restores both images and tags.
Read from a tar archive file, instead of STDIN. The tarball may be compressed with gzip, bzip, or xz. Read from a tar archive file, instead of STDIN. The tarball may be compressed with gzip, bzip, or xz.
**-q**, **--quiet** **-q**, **--quiet**
Suppress the load output. Without this option, a progress bar is displayed. Suppress the load progress bar but still outputs the imported images.
# EXAMPLES # EXAMPLES
@ -31,6 +32,11 @@ Restores both images and tags.
REPOSITORY TAG IMAGE ID CREATED SIZE REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 769b9341d937 7 weeks ago 2.489 MB busybox latest 769b9341d937 7 weeks ago 2.489 MB
$ docker load --input fedora.tar $ docker load --input fedora.tar
# […]
Loaded image: fedora:rawhide
# […]
Loaded image: fedora:20
# […]
$ docker images $ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE REPOSITORY TAG IMAGE ID CREATED SIZE
busybox latest 769b9341d937 7 weeks ago 2.489 MB busybox latest 769b9341d937 7 weeks ago 2.489 MB
@ -47,3 +53,4 @@ April 2014, Originally compiled by William Henry (whenry at redhat dot com)
based on docker.com source material and internal work. based on docker.com source material and internal work.
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
July 2015 update by Mary Anthony <mary@docker.com> July 2015 update by Mary Anthony <mary@docker.com>
June 2016 update by Vincent Demeester <vincent@sbr.pm>