有對docker tag
命令的說明斟珊。
1、準(zhǔn)備工作
Docker Hub地址:https://hub.docker.com/
(1)注冊用戶:
說明:
-
Sign In
:登陸秀撇,已有賬戶,點擊這里進行登陸。 -
Sign Up
:注冊屠缭,沒有賬戶骡和,點擊這里進行注冊相赁。 -
Get Started Today for Free
:立刻免費開始。 -
Already have an account? Sign In
:已經(jīng)有帳號了慰于? 登入钮科。 -
Send me occasional product updates and announcements.
:給我發(fā)送產(chǎn)品更新和公告。 - 進行人機身份驗證:這個選項必須勾選婆赠。
-
By creating an account, you agree to the Terms of Service, Privacy. Poligy, and Data Processing Terms.
:創(chuàng)建帳戶即表示您同意“服務(wù)條款绵脯,隱私”。 政策和數(shù)據(jù)處理條款休里。
上面的解釋已經(jīng)很清楚了蛆挫,我們直接填寫用戶名、郵箱妙黍、密碼悴侵,勾選進行人機身份驗證,最后點擊Sign Up
即可拭嫁。
(2)驗證用戶:
之后去我們的郵箱進行驗證:
感謝加入Docker畜挨。完成注冊,請點擊下面的按鈕來驗證您的帳戶噩凹。
點擊:Verify email address
:驗證電子郵件巴元。
之后會跳轉(zhuǎn)到如下界面:
提示您:驗證成功!請使用您的憑據(jù)登錄驮宴。
之后Docker會再給你發(fā)送一封郵件逮刨,內(nèi)容為:恭喜您,您的帳戶已被驗證,歡迎訪問Docker修己。
然后我們就可以用上邊注冊的用戶名密碼進行登陸了恢总。
(3)登陸Docker Hub
登陸Docker Hub,會在右上角顯示當(dāng)前用戶名稱睬愤。
2片仿、Docker登陸命令
登陸命令:docker login
[root@192 tomcatlogs]# docker login --help
Usage: docker login [OPTIONS] [SERVER]
Log in to a Docker registry.
If no server is specified, the default is defined by the daemon.
Options:
-p, --password string Password
--password-stdin Take the password from stdin
-u, --username string Username
演示:
# 用戶名或密碼錯誤
[root@192 ~]# docker login -u xxxxx6688
Password:
Error response from daemon: Get https://registry-1.docker.io/v2/: unauthorized: incorrect username or password
# 登陸成功
[root@192 ~]# docker login -u xxxxx6688
Password:
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store
Login Succeeded
登錄完畢后就可以提交鏡像了。
說明:
docker login : 登陸到一個Docker鏡像倉庫尤辱,如果未指定鏡像倉庫地址砂豌,默認(rèn)為官方倉庫 Docker Hub
docker logout : 登出一個Docker鏡像倉庫,如果未指定鏡像倉庫地址光督,默認(rèn)為官方倉庫 Docker Hub
登出示例:
[root@192 ~]# docker logout
Removing login credentials for https://index.docker.io/v1/
3阳距、Docker提交命令
提交命令:docker pull 鏡像名:TAG
[root@192 tomcatlogs]# docker push --help
Usage: docker push [OPTIONS] NAME[:TAG]
Push an image or a repository to a registry
Options:
-a, --all-tags Push all tagged images in the repository
--disable-content-trust Skip image signing (default true)
-q, --quiet Suppress verbose output
示例:
# 查看本地Docker鏡像
[root@192 ~]# clear
[root@192 ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
diytomcat9 latest 12988584a30e 14 hours ago 607MB
centos latest 300e315adb2f 3 months ago 209MB
# 把diytomcat9鏡像發(fā)布到Docker Hub
[root@192 ~]# docker push diytomcat9
Using default tag: latest
The push refers to repository [docker.io/library/diytomcat9]
b4ef62e90bac: Preparing
5da8b73f85d7: Preparing
68a0171f3cc4: Preparing
76f4ae6e5125: Preparing
2653d992f4ef: Preparing
可以看到,向遠(yuǎn)程倉庫推送鏡像的時候结借,也是按照鏡像的層級來進行推送的筐摘。
提示:我看網(wǎng)上說有用
docker push 注冊用戶名/鏡像名:TAG
來進行提交,親測不用加用戶名船老。
4咖熟、總結(jié):
發(fā)布鏡像到Docker Hub很簡單,只需要兩步:
-
docker login
:登陸Docker Hub柳畔。 -
docker push
:發(fā)布鏡像到Docker Hub馍管。
5、補充:docker tag命令
作用貌似是荸镊,修改本地鏡像名稱和版本號咽斧,其實是給鏡像打標(biāo)記。
使用命令:docker tag SOURCE_IMAGE[:TAG] TARGET_IMAGE[:TAG]
作用:給本地鏡像打一個標(biāo)記(tag)躬存,可將其歸入某一倉庫张惹。
演示:
# 查看本地Docker鏡像
[root@192 ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
diytomcat9 latest 12988584a30e 14 hours ago 607MB
centos latest 300e315adb2f 3 months ago 209MB
# 給diytomcat9鏡像打tag標(biāo)記
[root@192 ~]# docker tag 12988584a30e wukong/tomcat9:1.8
# 再次查看本地Docker鏡像
[root@192 ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
diytomcat9 latest 12988584a30e 14 hours ago 607MB
wukong/tomcat9 1.8 12988584a30e 14 hours ago 607MB
centos latest 300e315adb2f 3 months ago 209MB
提示:鏡像打了新的TAG,雖然會多了一條鏡像記錄岭洲,但是從IMAGE ID可以得知他們是同一個鏡像宛逗。
實際使用場景:
- 當(dāng)鏡像配置到一定程度時,想打個 tag 進行記錄當(dāng)前版本盾剩,可以打個 V1雷激。
- 再次更新鏡像時,又可以打個 V2告私。
- 當(dāng)是最新版本待上傳時屎暇,可以不打默認(rèn)就是 latest 最新。
- 這樣不僅能保存最新版本的鏡像驻粟,也能保存歷史版本的鏡像根悼,方便新版本鏡像出問題時進行版本回溯