CentOS 7 Docker 搭建私有仓库 registry(2)

[root@localhost ~]# tree /opt/data/registry/repositories/
/opt/data/registry/repositories/
└── library
    └── ssh
        ├── _index_images
        ├── json
        ├── tag_latest
        └── taglatest_json
 
2 directories, 4 files

客户端

1.安装并启动docker

yum -y install  docker
  service docker  start
  chkconfig docker  on

2.修改docker配置文件,指定私有仓库url

[root@localhost ~]# vim /etc/sysconfig/docker
修改此行
OPTIONS='--insecure-registry 192.168.0.167:5000 '
[root@localhost ~]# service docker restart

3.测试,下载刚才上传的镜像

[root@localhost ~]# docker pull 192.168.0.167:5000/busybox
 [root@localhost ~]# docker images
 REPOSITORY                          TAG                IMAGE ID            CREATED            VIRTUAL SIZE
192.168.0.167:5000/busybox          latest              0064fda8c45d        5 days ago          1.113 MB
docker.io/registry                  latest              105c6c9299d9        5 days ago          423.3 MB
docker.io/centos                    latest              ce20c473cd8a        6 days ago          172.3 MB
docker.io/atcol/docker-registry-ui  latest              d838355ad903        6 months ago        890.5 MB

更多Docker相关教程见以下内容

Docker安装应用(CentOS 6.5_x64)  

Ubuntu 14.04安装Docker   

Ubuntu使用VNC运行基于Docker的桌面系统 

阿里云CentOS 6.5 模板上安装 Docker  

Ubuntu 15.04下安装Docker   

在Ubuntu Trusty 14.04 (LTS) (64-bit)安装Docker  

在 Ubuntu 15.04 上如何安装Docker及基本用法

Docker 的详细介绍请点这里
Docker 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/15862.html