美文网首页
docker搭建私有仓库

docker搭建私有仓库

作者: 12点前睡觉hhh | 来源:发表于2019-10-29 14:42 被阅读0次

docker搭建私有仓库

部署环境:

两台centos7虚拟机,其中一台作为registry
docker:18.06-ce
已经配置好阿里云镜像加速,阿里云镜像加速配置可以参考:[https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors](https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors)

registry节点

首先在registry节点,拉取registry镜像

[root@host1 se-eureka]#  docker pull registry

启动registry镜像服务

[root@host1 se-eureka]#  docker run -itd -v /data/registry:/var/lib/registry -p 5000:5000 --restart=always --name registry registry:latest 

修改daemon.json文件

[root@host1 se-eureka]# vim /etc/docker/daemon.json 
[root@host1 se-eureka]# cat /etc/docker/daemon.json 
{
  "registry-mirrors": ["https://jrhfzcbf.mirror.aliyuncs.com"],
  "insecure-registries": ["192.168.1.36:5000"],
  "exec-opts": ["native.cgroupdriver=systemd"],
  "log-driver": "json-file",
  "log-opts": {
    "max-size": "100m"
  },
  "storage-driver": "overlay2",
  "storage-opts": [
    "overlay2.override_kernel_check=true"
  ]
}

重启docker服务

systemctl daemon-reload docker
systemclt restart docker

测试:

[root@host1 se-eureka]# curl http://192.168.1.36:5000/v2/_catalog
{"repositories":[""]}

其他节点

[root@host3 ~]# vim /etc/docker/daemon.json
[root@host3 ~]# cat /etc/docker/daemon.json 
{
  "registry-mirrors": ["https://jrhfzcbf.mirror.aliyuncs.com"],
  "insecure-registries": ["192.168.1.36:5000"],
  "exec-opts": ["native.cgroupdriver=systemd"],
  "log-driver": "json-file",
  "log-opts": {
    "max-size": "100m"
  },
  "storage-driver": "overlay2",
  "storage-opts": [
    "overlay2.override_kernel_check=true"
  ]
}

重启docker服务

[root@host3 ~]# systemctl daemon-reload docker
[root@host3 ~]# systemctl restart docker

测试:

[root@host1 se-eureka]# docker pull nginx
[root@host1 se-eureka]# docker tag nginx 192.168.1.36:5000/mynginx:v1
[root@host1 se-eureka]# docker push 192.168.1.36:5000/mynginx

然后在另外一台主机上

[root@host2 ~]# docker pull 192.168.1.36:5000/mynginx:v1
v1: Pulling from mynginx
8d691f585fa8: Pull complete 
5b07f4e08ad0: Pull complete 
abc291867bca: Pull complete 
Digest: sha256:f56b43e9913cef097f246d65119df4eda1d61670f7f2ab720831a01f66f6ff9c
Status: Downloaded newer image for 192.168.1.36:5000/mynginx:v1

相关文章

  • Docker

    构建镜像仓库 Docker运行java程序 1.1.6 搭建docker私有仓库 新建私有仓库 1.2.1 数据挂...

  • 5.私有与公有镜像仓库

    一. 搭建私有镜像仓库 Docker Hub作为Docker默认官方公共镜像;如果想自己搭建私有镜像仓库,官方也提...

  • Docker

    一、Docker 私有仓库搭建 环境centos 6 192.168.1.2 Docker 仓库 192.168....

  • k8s学习笔记-5-私有harbor

    5 创建docker私有仓库 使用node5节点搭建harbor私有仓库 harbor仓库依赖docker和doc...

  • Docker搭建私有仓库之Harbor

    Docker搭建私有仓库之Harbor Harbor Harbor是构建企业级私有docker镜像的仓库的开源解决...

  • Docker之八私有仓库

    个人专题目录 Docker 私有仓库 1. 私有仓库搭建 2. 将镜像上传至私有仓库 3. 从私有仓库拉取镜像

  • 搭建docker私有仓库(3)

    至于为什么搭建docker私有仓库,原因很简单,把项目放到docker公有仓库,或者是阿里云的docker仓库,是...

  • Docker私有仓库

    一、Docker私有仓库搭建与配置 1、拉取私有仓库镜像 2、启动私有仓库容器 3、打开浏览器输入地址http:/...

  • docker container monitor

    原文:利用TICK搭建Docker容器可视化监控中心 前言 前面已经搭建了私有docker仓库以及用docker-...

  • Harbor搭建私有Docker仓库

    前言:搭建私有docker仓库,方便部署扩展我们服务... ⚠️必须安装docker(1.10+)和docker-...

网友评论

      本文标题:docker搭建私有仓库

      本文链接:https://www.haomeiwen.com/subject/vqzwvctx.html