Docker import: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Client Operations =Overview=")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
=External=
* https://docs.docker.com/engine/reference/commandline/import/
=Internal=
=Internal=


Line 4: Line 8:


=Overview=
=Overview=
Create a new filesystem image from the contents of a tar archive.
<pre>
gunzip < db.tar.gz | docker import - db
</pre>

Latest revision as of 17:49, 19 April 2017

External

Internal

Overview

Create a new filesystem image from the contents of a tar archive.

gunzip < db.tar.gz | docker import - db