TOOL » VIRTUAL_ENVIRONMENT » DOCKER

Push

Usage

Push an image or a repository to a registry.

shell
docker push OPTIONS NAME:TAG
OptionDescription
--all-tags -aPush all tagged images in the repository.
--disable-content-trustSkip image signing.
--quiet -qSuppress verbose output.

Example

Pushing a new image to a registry:

shell
docker tag imagename:latest localhost:8080/myuser/imagename:1.0.0
docker push localhost:8080/myuser/imagename:1.0.0