User Tools

Site Tools


docker_push

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docker_push [2015/10/06 10:27] – created luke7858docker_push [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
-=== Pushing Your Docker Image ===+===Docker Hub ==== 
 +Sign up for a free account: 
 +https://hub.docker.com/ 
 + 
 +------------------------------------------------------------------------------ 
 + 
 + 
 +====Registering Your Machine ==== 
 +=Method 1== 
 +Command: 
 +<sxh bash> 
 +[root@docker ~]# docker login 
 +Username: username 
 +Password:  
 +Email: [email protected] 
 +WARNING: login credentials saved in /root/.docker/config.json 
 +Login Succeeded 
 +</sxh>
 \\ \\
 +==Method 2 ==
 <sxh bash> <sxh bash>
 docker login --username=username --password=1234567 [email protected] docker login --username=username --password=1234567 [email protected]
 </sxh> </sxh>
 +
 +------------------------------------------------------------------------------
 +==== Committing a container (PUSH) ====
 +source: https://docs.docker.com/reference/commandline/commit/
 +\\
 +First you will need to commit a container, then you can push it to the repository
 +<sxh bash>
 +docker commit containerID luke/containername:tag
 +</sxh>
 +
 +------------------------------------------------------------------------------
 +=== Tagging Image Before Pushing ====
 +If you forgot to tage the container before you committed you can do it now
 +<sxh bash>
 +docker images
 +</sxh>
 +<sxh bash>
 +docker tag ImageID luke/test:tag
 +</sxh>
 +------------------------------------------------------------------------------
 +
 +==== Pushing an Image ====
 +<sxh bash>
 +docker push luke/test
 +</sxh>
 +
docker_push.1444127265.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki