diff --git a/docs/man/docker-export.1.md b/docs/man/docker-export.1.md index d2b22d221796f9d73d4217d220f5ba0a39035f0c..226ae5c1d57d69bf3c4a299af736db02276f4545 100644 --- a/docs/man/docker-export.1.md +++ b/docs/man/docker-export.1.md @@ -26,6 +26,10 @@ called test.tar: # ls *.tar test.tar +# See also +**docker-import(1)** to create an empty filesystem image +and import the contents of the tarball into it, then optionally tag it. + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work. diff --git a/docs/man/docker-import.1.md b/docs/man/docker-import.1.md index d948dec68c9dbf3ebad99a1b90a3fcdd7a4f6111..3f9b8bb3e402ccf0c3e8f7b6038686cf345f25b2 100644 --- a/docs/man/docker-import.1.md +++ b/docs/man/docker-import.1.md @@ -50,6 +50,9 @@ This example sets the docker image ENV variable DEBUG to true by default. # tar -c . | docker import -c="ENV DEBUG true" - exampleimagedir +# See also +**docker-export(1)** to export the contents of a filesystem as a tar archive to STDOUT. + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work. diff --git a/docs/man/docker-load.1.md b/docs/man/docker-load.1.md index 71bd28adf50452455979404fed50b6684e870323..52eaa37a1f4781ec31f7f58041598a96c0eebcf1 100644 --- a/docs/man/docker-load.1.md +++ b/docs/man/docker-load.1.md @@ -36,6 +36,9 @@ Restores both images and tags. fedora heisenbug 58394af37342 7 weeks ago 385.5 MB fedora latest 58394af37342 7 weeks ago 385.5 MB +# See also +**docker-save(1)** to save an image(s) to a tar archive (streamed to STDOUT by default). + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work. diff --git a/docs/man/docker-save.1.md b/docs/man/docker-save.1.md index 987d18b84ba1472991151e437e5d36930076d43c..91be06c3503c7653074a1cd9f59030e606d19f26 100644 --- a/docs/man/docker-save.1.md +++ b/docs/man/docker-save.1.md @@ -35,6 +35,9 @@ fedora image to a fedora-latest.tar: $ ls -sh fedora-latest.tar 367M fedora-latest.tar +# See also +**docker-load(1)** to load an image from a tar archive on STDIN. + # HISTORY April 2014, Originally compiled by William Henry (whenry at redhat dot com) based on docker.com source material and internal work.