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
2014-06-30 22:58:04 -04:00
docker-import - Create an empty filesystem image and import the contents of the tarball (.tar, .tar.gz, .tgz, .bzip, .tar.xz, .txz) into it, then optionally tag it.
2014-04-16 14:07:55 -04:00
# SYNOPSIS
2014-06-30 22:58:04 -04:00
**docker import**
2015-10-13 11:12:30 -04:00
[**-c**|**--change**[=*[]*]]
2015-08-20 00:01:50 -04:00
[**-m**|**--message**[=*MESSAGE*]]
2014-10-15 17:14:12 -04:00
[**--help**]
2015-10-13 11:12:30 -04:00
file|URL|**-**[REPOSITORY[:TAG]]
2014-04-16 14:07:55 -04:00
2015-02-05 06:26:05 -05:00
# OPTIONS
**-c**, ** --change**=[]
Apply specified Dockerfile instructions while importing the image
2015-04-20 04:48:17 -04:00
Supported Dockerfile instructions: `CMD` |`ENTRYPOINT`|`ENV`|`EXPOSE`|`ONBUILD`|`USER`|`VOLUME`|`WORKDIR`
2015-02-05 06:26:05 -05:00
2015-10-13 11:12:30 -04:00
**--help**
Print usage statement
2015-08-20 00:01:50 -04:00
**-m**, ** --message**=""
Set commit message for imported image
2014-04-16 14:07:55 -04:00
# DESCRIPTION
2014-06-14 03:59:52 -04:00
Create a new filesystem image from the contents of a tarball (`.tar`,
`.tar.gz` , `.tgz` , `.bzip` , `.tar.xz` , `.txz` ) into it, then optionally tag it.
2014-04-16 14:07:55 -04:00
2014-06-30 22:58:04 -04:00
2014-04-16 14:07:55 -04:00
# EXAMPLES
## Import from a remote location
# docker import http://example.com/exampleimage.tgz example/imagerepo
## Import from a local file
Import to docker via pipe and stdin:
# cat exampleimage.tgz | docker import - example/imagelocal
2015-08-20 00:01:50 -04:00
Import with a commit message
# cat exampleimage.tgz | docker import --message "New image imported from tarball" - exampleimagelocal:new
2015-03-29 13:42:11 -04:00
Import to a Docker image from a local file.
# docker import /path/to/exampleimage.tgz
2014-04-16 14:07:55 -04:00
## Import from a local file and tag
Import to docker via pipe and stdin:
# cat exampleimageV2.tgz | docker import - example/imagelocal:V-2.0
## Import from a local directory
# tar -c . | docker import - exampleimagedir
2015-02-05 06:26:05 -05:00
## Apply specified Dockerfile instructions while importing the image
This example sets the docker image ENV variable DEBUG to true by default.
# tar -c . | docker import -c="ENV DEBUG true" - exampleimagedir
2015-03-04 20:21:38 -05:00
# See also
**docker-export(1)** to export the contents of a filesystem as a tar archive to STDOUT.
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 >