2014-04-16 18:07:55 +00:00
|
|
|
% DOCKER(1) Docker User Manuals
|
2014-07-01 02:58:04 +00:00
|
|
|
% Docker Community
|
|
|
|
% JUNE 2014
|
2014-04-16 18:07:55 +00:00
|
|
|
# NAME
|
2014-11-28 04:21:55 +00:00
|
|
|
docker-save - Save an image(s) to a tar archive (streamed to STDOUT by default)
|
2014-04-16 18:07:55 +00:00
|
|
|
|
|
|
|
# SYNOPSIS
|
2014-07-01 02:58:04 +00:00
|
|
|
**docker save**
|
2014-10-15 21:14:12 +00:00
|
|
|
[**--help**]
|
2014-07-01 02:58:04 +00:00
|
|
|
[**-o**|**--output**[=*OUTPUT*]]
|
2014-11-28 04:21:55 +00:00
|
|
|
IMAGE [IMAGE...]
|
2014-04-16 18:07:55 +00: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 21:14:12 +00:00
|
|
|
**--help**
|
|
|
|
Print usage statement
|
|
|
|
|
2014-04-16 18:07:55 +00:00
|
|
|
**-o**, **--output**=""
|
2014-09-18 14:55:38 +00:00
|
|
|
Write to a file, instead of STDOUT
|
2014-04-16 18:07:55 +00:00
|
|
|
|
2014-07-01 02:58:04 +00:00
|
|
|
# EXAMPLES
|
2014-04-16 18:07:55 +00:00
|
|
|
|
|
|
|
Save all fedora repository images to a fedora-all.tar and save the latest
|
2014-04-17 15:36:58 +00:00
|
|
|
fedora image to a fedora-latest.tar:
|
2014-04-16 18:07:55 +00:00
|
|
|
|
|
|
|
$ sudo docker save fedora > fedora-all.tar
|
|
|
|
$ sudo docker save --output=fedora-latest.tar fedora:latest
|
|
|
|
$ ls -sh fedora-all.tar
|
|
|
|
721M fedora-all.tar
|
|
|
|
$ ls -sh fedora-latest.tar
|
|
|
|
367M fedora-latest.tar
|
|
|
|
|
|
|
|
# HISTORY
|
|
|
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
2014-07-02 00:30:25 +00:00
|
|
|
based on docker.com source material and internal work.
|
2014-07-03 01:07:42 +00:00
|
|
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
2014-11-28 04:21:55 +00:00
|
|
|
November 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|