美文网首页
docker访问http私有仓库

docker访问http私有仓库

作者: 博楠同学 | 来源:发表于2023-07-19 16:33 被阅读0次

1、编辑文件
vim /etc/docker/daemon.json
2、 添加以下内容

{
    "registry-mirrors": [
        "https://reg-mirror.qiniu.com/",
        "https://hub-mirror.c.163.com/",
        "https://docker.mirrors.ustc.edu.cn/"
    ],
    "insecure-registries": [
        "http://192.168.106.128"
    ]
}

3、重启docker
systemctl restart docker

相关文章

  • Docker私有仓库

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

  • docker 搭建私有仓库&用户密码认证&web可视化界面

    docker创建带有用户密码认证和web可视化界面的私有仓库Docker搭建带有访问认证的私有仓库 踩了两天的坑,...

  • Docker

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

  • docker

    docker 私有仓库 下载镜像registrydocker pull registry 配置私有仓库(/etc/...

  • docker 连接私有仓库

    docker 连接私有仓库,并向私有仓库推送镜像 一、检查是否已经配置私有仓库 Insecure Registri...

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

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

  • Docker

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

  • Docker搭建私有仓库之Harbor

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

  • Docker之八私有仓库

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

  • 创建私有docker仓库

    使用私有仓库pull push更快速。 使⽤registry镜像创建私有仓库(仓库端) docker-regist...

网友评论

      本文标题:docker访问http私有仓库

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