2014-04-16 14:07:55 -04:00
|
|
|
% DOCKER(1) Docker User Manuals
|
2014-06-30 22:58:04 -04:00
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
2014-04-16 14:07:55 -04:00
|
|
|
# NAME
|
2015-06-09 09:33:41 -04:00
|
|
|
docker-load - Load an image from a tar archive or STDIN
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# SYNOPSIS
|
2014-06-30 22:58:04 -04:00
|
|
|
**docker load**
|
2014-10-15 17:14:12 -04:00
|
|
|
[**--help**]
|
2014-06-30 22:58:04 -04:00
|
|
|
[**-i**|**--input**[=*INPUT*]]
|
2016-03-24 13:57:44 -04:00
|
|
|
[**-q**|**--quiet**]
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
Loads a tarred repository from a file or the standard input stream.
|
2016-06-08 11:40:37 -04:00
|
|
|
Restores both images and tags. Write image names or IDs imported it
|
|
|
|
standard output stream.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# OPTIONS
|
2014-10-15 17:14:12 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
**-i**, **--input**=""
|
2015-07-24 16:39:29 -04:00
|
|
|
Read from a tar archive file, instead of STDIN. The tarball may be compressed with gzip, bzip, or xz.
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2016-03-24 13:57:44 -04:00
|
|
|
**-q**, **--quiet**
|
2016-06-08 11:40:37 -04:00
|
|
|
Suppress the load progress bar but still outputs the imported images.
|
2016-03-24 13:57:44 -04:00
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
# EXAMPLES
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker images
|
2016-02-02 00:57:59 -05:00
|
|
|
REPOSITORY TAG IMAGE ID CREATED SIZE
|
2014-04-16 14:07:55 -04:00
|
|
|
busybox latest 769b9341d937 7 weeks ago 2.489 MB
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker load --input fedora.tar
|
2016-06-08 11:40:37 -04:00
|
|
|
# […]
|
|
|
|
Loaded image: fedora:rawhide
|
|
|
|
# […]
|
|
|
|
Loaded image: fedora:20
|
|
|
|
# […]
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker images
|
2016-02-02 00:57:59 -05:00
|
|
|
REPOSITORY TAG IMAGE ID CREATED SIZE
|
2014-04-16 14:07:55 -04:00
|
|
|
busybox latest 769b9341d937 7 weeks ago 2.489 MB
|
|
|
|
fedora rawhide 0d20aec6529d 7 weeks ago 387 MB
|
|
|
|
fedora 20 58394af37342 7 weeks ago 385.5 MB
|
|
|
|
fedora heisenbug 58394af37342 7 weeks ago 385.5 MB
|
|
|
|
fedora latest 58394af37342 7 weeks ago 385.5 MB
|
|
|
|
|
2015-03-04 20:21:38 -05:00
|
|
|
# See also
|
2016-03-22 03:16:52 -04:00
|
|
|
**docker-save(1)** to save one or more images to a tar archive (streamed to STDOUT by default).
|
2015-03-04 20:21:38 -05:00
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
# HISTORY
|
|
|
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
2014-07-01 20:30:25 -04:00
|
|
|
based on docker.com source material and internal work.
|
2014-06-30 22:58:04 -04:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
2015-07-24 16:39:29 -04:00
|
|
|
July 2015 update by Mary Anthony <mary@docker.com>
|
2016-06-08 11:40:37 -04:00
|
|
|
June 2016 update by Vincent Demeester <vincent@sbr.pm>
|