标签:push pull docker docker hub
flyer520对docker镜像下载和上传实例:
第1步,注册docker-hub账号。在https://hub.docker.com/网站注册。
注:我的账号是flyer520,邮箱12700696@qq.com
第2步,linux登录docker测试。
我的账号:dockerlogin --username=flyer520 --email=12700696@qq.com (登录OK)
查看登录信息:cat ~/.docker/config.json
第3步,下载docker镜像。
docker pull busybox
docker pull nginx
docker images
第4步,修改标签(重设标签)。
测试1:修改nginx标签,并push上传到flyer520的docker-hub中。
docker tag nginx flyer520/nginx
docker push flyer520/nginx
测试2:修改busybox标签,并push上传到flyer520的docker-hub中。
docker tag busybox flyer520/busybox
docker push flyer520/busybox
验证:登录到docker-hub,查看是否多了nginx镜像。
本文出自 “网络技术天地” 博客,请务必保留此出处http://1364952.blog.51cto.com/1354952/1959550
标签:push pull docker docker hub
原文地址:http://1364952.blog.51cto.com/1354952/1959550