2018-03-20 17:41:19 +08:00
# buildah-push"1" "June 2017" "buildah"
2017-06-02 00:11:14 +08:00
## NAME
2018-04-26 21:01:15 +08:00
buildah\-push - Push an image from local storage to elsewhere.
2017-06-02 00:11:14 +08:00
## SYNOPSIS
2018-06-30 03:39:36 +08:00
**buildah push** [*options*] *image* [*destination*]
2017-06-02 00:11:14 +08:00
## DESCRIPTION
Pushes an image from local storage to a specified destination, decompressing
and recompessing layers as needed.
2017-07-13 21:14:41 +08:00
## imageID
Image stored in local container/storage
## DESTINATION
2018-09-08 01:56:03 +08:00
The DESTINATION is a location to store container images. If omitted, the source image parameter will be reused as destination.
2017-07-13 21:14:41 +08:00
2018-09-08 01:56:03 +08:00
The Image "DESTINATION" uses a "transport":"details" format. Multiple transports are supported:
2017-07-13 21:14:41 +08:00
**dir:**_path_
An existing local directory _path_ storing the manifest, layer tarballs and signatures as individual files. This is a non-standardized format, primarily useful for debugging or noninvasive container inspection.
**docker://**_docker-reference_
2019-04-10 03:57:12 +08:00
An image in a registry implementing the "Docker Registry HTTP API V2". By default, uses the authorization state in `$XDG\_RUNTIME\_DIR/containers/auth.json` , which is set using `(buildah login)` . If the authorization state is not found there, `$HOME/.docker/config.json` is checked, which is set using `(docker login)` .
2018-05-02 03:37:13 +08:00
If _docker-reference_ does not include a registry name, the image will be pushed to a registry running on *localhost* .
2017-07-13 21:14:41 +08:00
**docker-archive:**_path_[** :**_docker-reference_]
An image is stored in the `docker save` formatted file. _docker-reference_ is only used when creating such a file, and it must not contain a digest.
**docker-daemon:**_docker-reference_
2018-12-05 22:47:27 +08:00
An image _docker_reference_ stored in the docker daemon internal storage. If _docker_reference_ does not begin with a valid registry name (a domain name containing "." or the reserved name "localhost") then the default registry name "docker.io" will be prepended. _docker_reference_ must contain either a tag or a digest. Alternatively, when reading images, the format can also be docker-daemon:algo:digest (an image ID).
2017-07-13 21:14:41 +08:00
**oci:**_path_** :**_tag_
An image _tag_ in a directory compliant with "Open Container Image Layout Specification" at _path_ .
2018-04-06 22:56:09 +08:00
**oci-archive:**_path_** :**_tag_
An image _tag_ in a tar archive compliant with "Open Container Image Layout Specification" at _path_ .
2017-07-13 21:14:41 +08:00
**ostree:**_image_[** @**_/absolute/repo/path_]
An image in local OSTree repository. _/absolute/repo/path_ defaults to _/ostree/repo_ .
2018-09-08 01:56:03 +08:00
If the transport part of DESTINATION is omitted, "docker://" is assumed.
2017-06-02 00:11:14 +08:00
## OPTIONS
2017-11-16 04:18:48 +08:00
**--authfile** *path*
2019-04-10 03:57:12 +08:00
Path of the authentication file. Default is ${XDG\_RUNTIME\_DIR}/containers/auth.json, which is set using `buildah login` .
2017-11-21 23:08:12 +08:00
If the authorization state is not found there, $HOME/.docker/config.json is checked, which is set using `docker login` .
2017-11-16 04:18:48 +08:00
2017-08-25 05:44:32 +08:00
**--cert-dir** *path*
2018-05-02 03:37:13 +08:00
Use certificates at *path* (\*.crt, \*.cert, \*.key) to connect to the registry.
2018-02-07 06:00:01 +08:00
Default certificates directory is _/etc/containers/certs.d_ .
2017-08-25 05:44:32 +08:00
**--creds** *creds*
2018-01-25 06:49:37 +08:00
The [username[:password]] to use to authenticate with the registry if required.
If one or both values are not supplied, a command line prompt will appear and the
value can be entered. The password is entered without echo.
2017-08-25 05:44:32 +08:00
2017-06-02 00:11:14 +08:00
**--disable-compression, -D**
Don't compress copies of filesystem layers which will be pushed.
2017-11-10 01:52:50 +08:00
**--format, -f**
Manifest Type (oci, v2s1, or v2s2) to use when saving image to directory using the 'dir:' transport (default is manifest type of source)
2018-05-11 01:54:58 +08:00
**--quiet, -q**
2017-09-22 17:39:33 +08:00
When writing the output image, suppress progress output.
2017-08-25 05:44:32 +08:00
**--tls-verify** *bool-value*
Require HTTPS and verify certificates when talking to container registries (defaults to true)
2017-06-02 00:11:14 +08:00
## EXAMPLE
2017-07-13 21:14:41 +08:00
This example extracts the imageID image to a local directory in docker format.
`# buildah push imageID dir:/path/to/image`
This example extracts the imageID image to a local directory in oci format.
2018-04-06 22:56:09 +08:00
`# buildah push imageID oci:/path/to/layout:image:tag`
This example extracts the imageID image to a tar archive in oci format.
`# buildah push imageID oci-archive:/path/to/archive:image:tag`
2017-07-13 21:14:41 +08:00
2017-08-25 05:44:32 +08:00
This example extracts the imageID image to a container registry named registry.example.com.
2017-07-13 21:14:41 +08:00
`# buildah push imageID docker://registry.example.com/repository:tag`
2018-09-08 01:56:03 +08:00
This example works like **docker push** , assuming *registry.example.com/my_image* is a local image.
`# buildah push registry.example.com/my_image`
2017-11-16 04:18:48 +08:00
This example extracts the imageID image to a private container registry named registry.example.com with authentication from /tmp/auths/myauths.json.
`# buildah push --authfile /tmp/auths/myauths.json imageID docker://registry.example.com/repository:tag`
2017-08-25 05:44:32 +08:00
This example extracts the imageID image and puts into the local docker container store.
2017-07-13 21:14:41 +08:00
`# buildah push imageID docker-daemon:image:tag`
2017-06-02 00:11:14 +08:00
2017-08-25 05:44:32 +08:00
This example extracts the imageID image and puts it into the registry on the localhost while turning off tls verification.
`# buildah push --tls-verify=false imageID docker://localhost:5000/my-imageID`
This example extracts the imageID image and puts it into the registry on the localhost using credentials and certificates for authentication.
`# buildah push --cert-dir ~/auth --tls-verify=true --creds=username:password imageID docker://localhost:5000/my-imageID`
2018-05-03 04:53:27 +08:00
## Files
**registries.conf** (`/etc/containers/registries.conf`)
2018-06-11 21:57:45 +08:00
registries.conf is the configuration file which specifies which container registries should be consulted when completing image names which do not include a registry or domain portion.
2018-05-03 04:53:27 +08:00
2019-02-27 23:29:09 +08:00
**policy.json** (`/etc/containers/policy.json`)
Signature policy file. This defines the trust policy for container images. Controls which container registries can be used for image, and whether or not the tool should trust the images.
2017-06-02 00:11:14 +08:00
## SEE ALSO
2019-04-10 03:57:12 +08:00
buildah(1), buildah-login(1), policy.json(5), docker-login(1), registries.conf(5)