docker仓库的搭建以及使用
目录
一、使用aliyun的registry上传下载镜像https://cr.console.aliyun./-hangzhou/repositories
1.先在阿里云注册一个本地仓库
2.给镜像打上标签
3.在docker上登陆自己的阿里云账号
4.把镜像上传到阿里云
5.查看是否成功
6.删除本地镜像
7.下拉镜像到本地
二、使用registry镜像运行容器上传下载镜像
一、使用aliyun的registry上传下载镜像
https://cr.console.aliyun./-hangzhou/repositories
1.先在阿里云注册一个本地仓库
容器镜像服务 (aliyun.)https://cr.console.aliyun./-hangzhou/instance/repositories
2.给镜像打上标签
[root@bingbing ~]# docker tag alpine:latest maxuedong/alpine:latest
[root@bingbing ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox v1 0a141ab55662 4 hours ago 1.24MB
maxuedong/alpine latest 9c6f07244728 11 days ago 5.54MB
alpine latest 9c6f07244728 11 days ago 5.54MB
php latest 4d6ad64a864a 2 eeks ago 484MB
nginx latest b692a91e4e15 2 eeks ago 142MB
busybox latest 7a80323521 3 eeks ago 1.24MB
hello-orld latest feb5d9fea6a5 11 months ago 13.3kB
tencentci/discuz lasest 4833f513a33c 13 months ago 463MB
3.在docker上登陆自己的阿里云账号
[root@bingbing ~]# docker login --username=q1434870588 registry.-hangzhou.aliyuncs.
Passord:
WARNING! Your passord ill be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this arning. See
https://docs.docker./engine/reference/mandline/login/#credentials-store
Login Sueeded
4.把镜像上传到阿里云
[root@bingbing ~]# docker tag alpine:latest registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
[root@bingbing ~]# docker push registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
The push refers to repository [registry.-hangzhou.aliyuncs./daroubaozi/dockers]
994393dc58e7: Pushed
v1: digest: sha256:1304f174557314a7ed9eddb4eab12fed12cb0cd9809e4c28f29af86979a3c870 size: 528
5.查看是否成功
[root@bingbing ~]# docker tag alpine:latest maxuedong/alpine:latest
[root@bingbing ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
busybox v1 0a141ab55662 4 hours ago 1.24MB
maxuedong/alpine latest 9c6f07244728 11 days ago 5.54MB
alpine latest 9c6f07244728 11 days ago 5.54MB
php latest 4d6ad64a864a 2 eeks ago 484MB
nginx latest b692a91e4e15 2 eeks ago 142MB
busybox latest 7a80323521 3 eeks ago 1.24MB
hello-orld latest feb5d9fea6a5 11 months ago 13.3kB
tencentci/discuz lasest 4833f513a33c 13 months ago 463MB
[root@bingbing ~]# docker login --username=q1434870588 registry.-hangzhou.aliyuncs.
Passord:
WARNING! Your passord ill be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this arning. See
https://docs.docker./engine/reference/mandline/login/#credentials-storeLogin Sueeded
4.把镜像上传到阿里云
[root@bingbing ~]# docker tag alpine:latest registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
[root@bingbing ~]# docker push registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
The push refers to repository [registry.-hangzhou.aliyuncs./daroubaozi/dockers]
994393dc58e7: Pushed
v1: digest: sha256:1304f174557314a7ed9eddb4eab12fed12cb0cd9809e4c28f29af86979a3c870 size: 528
5.查看是否成功
[root@bingbing ~]# docker tag alpine:latest registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
[root@bingbing ~]# docker push registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
The push refers to repository [registry.-hangzhou.aliyuncs./daroubaozi/dockers]
994393dc58e7: Pushed
v1: digest: sha256:1304f174557314a7ed9eddb4eab12fed12cb0cd9809e4c28f29af86979a3c870 size: 528
6.删除本地镜像
[root@bingbing ~]# docker image rm alpine:latest
Untagged: alpine:latest
Untagged: alpine@sha256:bc41182d7ef5ffc53a40b044e725193bc10142a1243f395ee852a8d9730fc2ad
7.下拉镜像到本地
[root@bingbing ~]# docker pull registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
v1: Pulling from daroubaozi/dockers
Digest: sha256:1304f174557314a7ed9eddb4eab12fed12cb0cd9809e4c28f29af86979a3c870
Status: Image is up to date for registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
二、使用registry镜像运行容器上传下载镜像
1.拉取registry镜像
[root@bingbing ~]# docker pull registry
[root@bingbing ~]# docker image rm alpine:latest
Untagged: alpine:latest
Untagged: alpine@sha256:bc41182d7ef5ffc53a40b044e725193bc10142a1243f395ee852a8d9730fc2ad
[root@bingbing ~]# docker pull registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
v1: Pulling from daroubaozi/dockers
Digest: sha256:1304f174557314a7ed9eddb4eab12fed12cb0cd9809e4c28f29af86979a3c870
Status: Image is up to date for registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
registry.-hangzhou.aliyuncs./daroubaozi/dockers:v1
二、使用registry镜像运行容器上传下载镜像
1.拉取registry镜像
[root@bingbing ~]# docker pull registry
[root@bingbing ~]# docker pull registry
2.启动registry容器
3.打上标签[root@bingbing docker]# docker run --name registry -p 5000:5000 -v /data/registry:/var/lib/registry -d registry:2.6.2
4.修改/etc/docker/daemon.json配置文件[root@bingbing docker]# docker image tag nginx:1.14-alpine 49.234.46.66:5000/nginx:1.14
5.重启docker和 重启容器[root@bingbing ~]# vim /etc/docker/daemon.json
[root@bingbing ~]# cat /etc/docker/daemon.json{
registry-mirrors": ["https://jkeshucp.mirror.aliyuncs.","https://mirror.s.tencentyun."],
"insecure-registries": ["49.234.46.66:5000"]
}
需要修改daemon.json 文件的后缀名为daemon.demo 不然会报错,重启后改回来
[root@bingbing docker]# sudo mv daemon.conf daemon.json
6.上传镜像systemctl restart docker
docker restart registry[root@bingbing docker]# sudo mv daemon.json daemon.conf
7. 删除镜像docker push 49.234.46.66:5000/nginx:1.14
8.拉取镜像docker image rm 49.234.46.66:5000/nginx:1.14
docker pull 49.234.46.66:5000/nginx:1.14
空调维修
- 温岭冰箱全国统一服务热线-全国统一人工【7X2
- 荆州速热热水器维修(荆州热水器维修)
- 昆山热水器故障码5ER-昆山热水器故障码26
- 温岭洗衣机24小时服务电话—(7X24小时)登记报
- 统帅热水器售后维修服务电话—— (7X24小时)登
- 阳江中央空调统一电话热线-阳江空调官方售后电
- 乌鲁木齐阳春燃气灶厂家服务热线
- 珠海许昌集成灶售后服务电话-全国统一人工【
- 乌鲁木齐中央空调维修服务专线-乌鲁木齐中央空
- 新沂热水器故障电话码维修-新沂热水器常见故障
- 诸城壁挂炉24小时服务热线电话
- 靖江空调24小时服务电话-——售后维修中心电话
- 空调室外滴水管维修(空调室外排水管维修)
- 九江壁挂炉400全国服务电话-(7X24小时)登记报修
- 热水器故障码f.22怎么解决-热水器f0故障解决方法
- 营口热水器售后维修服务电话—— 全国统一人工