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
|
2016-03-22 03:16:52 -04:00
|
|
|
docker-save - Save one or more images to a tar archive (streamed to STDOUT by default)
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# SYNOPSIS
|
2014-06-30 22:58:04 -04:00
|
|
|
**docker save**
|
2014-10-15 17:14:12 -04:00
|
|
|
[**--help**]
|
2014-06-30 22:58:04 -04:00
|
|
|
[**-o**|**--output**[=*OUTPUT*]]
|
2014-11-27 23:21:55 -05:00
|
|
|
IMAGE [IMAGE...]
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
Produces a tarred repository to the standard output stream. Contains all
|
|
|
|
parent layers, and all tags + versions, or specified repo:tag.
|
|
|
|
|
|
|
|
Stream to a file instead of STDOUT by using **-o**.
|
|
|
|
|
|
|
|
# OPTIONS
|
2014-10-15 17:14:12 -04:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
**-o**, **--output**=""
|
2014-09-18 10:55:38 -04:00
|
|
|
Write to a file, instead of STDOUT
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2014-06-30 22:58:04 -04:00
|
|
|
# EXAMPLES
|
2014-04-16 14:07:55 -04:00
|
|
|
|
|
|
|
Save all fedora repository images to a fedora-all.tar and save the latest
|
2014-04-17 11:36:58 -04:00
|
|
|
fedora image to a fedora-latest.tar:
|
2014-04-16 14:07:55 -04:00
|
|
|
|
2015-03-26 14:12:37 -04:00
|
|
|
$ docker save fedora > fedora-all.tar
|
|
|
|
$ docker save --output=fedora-latest.tar fedora:latest
|
2014-04-16 14:07:55 -04:00
|
|
|
$ ls -sh fedora-all.tar
|
|
|
|
721M fedora-all.tar
|
|
|
|
$ ls -sh fedora-latest.tar
|
|
|
|
367M fedora-latest.tar
|
|
|
|
|
2015-03-04 20:21:38 -05:00
|
|
|
# See also
|
|
|
|
**docker-load(1)** to load an image from a tar archive on STDIN.
|
|
|
|
|
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-07-02 21:07:42 -04:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
2014-11-27 23:21:55 -05:00
|
|
|
November 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|