Docker push

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

External

Internal

Overview

Push an image or a repository to a registry:

docker push [options] <name>[:tag]

Procedure

Push to Individual Docker Hub Account

Log in:

docker login

Tag the image you want pushed, and which must exist in the local registry with the remote repository namespace/name/tag (note that the image could be originally created with the namespace/name/tag intended for the remote repository, and then just "docker push"ed):

docker tag postgresql-debug <dockerhub-userid>|<organization-id>/postgresql-95-debug:1

Push:

docker push <dockerhub-userid>|<organization-id>/postgresql-95-debug:1