共计 2141 个字符,预计需要花费 6 分钟才能阅读完成。
1、# docker pull registry // 下载 registry 镜像,registry 为 docker 官方提供的一个镜像,我们可以用它来创建本地的 docker 私有仓库。
2、# docker run -d -p 5000:5000 registry // 以 registry 镜像启动容器,监听 5000 端口
# docker exec -it a9f bash // 宿主机和容器同时监听了 5000 端口
3、# curl 127.0.0.1:5000 // 可以访问它
访问结果:”\”docker-registry server\””
4、把镜像上传到私有仓库:
先下载一个 busybox(很小,方便测试)的镜像
# docker pull busybox
# docker tag busybox 10.10.10.201:5000/busybox // 标记一下 tag,必须要带有私有仓库的 ip:port
上传镜像到私有仓库:
# docker push 10.10.10.201:5000/busybox
会有如下错误提示(如果 IP 地址写的不是本地 ip 也会有错):
Error response from daemon: invalid registry endpoint “http://10.10.10.201:5000/v0/”. HTTPS attempt: unable to ping registry endpoint https://10.10.10.201:5000/v0/
v2 ping attempt failed with error: Get https://10.10.10.201:5000/v2/: dial tcp 10.10.10.201:5000: connection refused
v1 ping attempt failed with error: Get https://10.10.10.201:5000/v1/_ping: dial tcp 10.10.10.201:5000: connection refused. HTTP attempt: unable to ping registry endpoint http://10.10.10.201:5000/v0/
v2 ping attempt failed with error: Get http://10.10.10.201:5000/v2/: dial tcp 10.10.10.201:5000: connection refused
v1 ping attempt failed with error: Get http://10.10.10.201:5000/v1/_ping: dial tcp 10.10.10.201:5000: connection refused
这是因为 Docker 从 1.3.X 之后,与 docker registry 交互默认使用的是 https,然而此处搭建的私有仓库只提供 http 服务,所以当与私有仓库交互式就会有上面的错误,为了解决这个问题需要在启动 docker server 时增加启动参数为默认使用 http 访问,解决方法为
# vim /etc/init.d/docker
把 $exec -d $other_args 改为 $exec -d –insecure-registry 10.10.10.201:5000 $other_args
重启 docker 服务
# /etc/init.d/docker restart
启动容器:
# docker start registry_container_id
查看私有仓库里的所有镜像
# curl http://10.10.10.201:5000/v1/search
更多 Docker 相关教程见以下内容:
Docker 安装应用(CentOS 6.5_x64) http://www.linuxidc.com/Linux/2014-07/104595.htm
Ubuntu 14.04 安装 Docker http://www.linuxidc.com/linux/2014-08/105656.htm
Ubuntu 使用 VNC 运行基于 Docker 的桌面系统 http://www.linuxidc.com/Linux/2015-08/121170.htm
阿里云 CentOS 6.5 模板上安装 Docker http://www.linuxidc.com/Linux/2014-11/109107.htm
Ubuntu 15.04 下安装 Docker http://www.linuxidc.com/Linux/2015-07/120444.htm
在 Ubuntu Trusty 14.04 (LTS) (64-bit)安装 Docker http://www.linuxidc.com/Linux/2014-10/108184.htm
在 Ubuntu 15.04 上如何安装 Docker 及基本用法 http://www.linuxidc.com/Linux/2015-09/122885.htm
Ubuntu 16.04 上 Docker 使用手记 http://www.linuxidc.com/Linux/2016-12/138490.htm
Docker 的详细介绍:请点这里
Docker 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-01/139997.htm