zoukankan      html  css  js  c++  java
  • docker push 镜像到本地仓库

    root@ubuntu:# uname -a
    Linux ubuntu 4.4.0-116-generic #140-Ubuntu SMP Mon Feb 12 21:23:04 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

    1、如果dockerhub的https证书是非权威机构的需要执行,需要添加证书信任

    root@ubuntu:# echo -n | openssl s_client -showcerts -connect dockerhub.xx.com:443 2>/dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' >> /etc/ssl/certs/dockerhub.xx.com.crt
    root@ubuntu:# update-ca-certificates

    2、修改/etc/docker/daemon.json

    root@ubuntu:# cat /etc/docker/daemon.json 
    {
        "insecure-registries": ["dockerhub.xx.com:5000"],
        "registry-mirrors": ["https://dockerhub.xx.com"]
    }
    root@ubuntu:# service docker restart

    3、通过 docker tag重命名镜像,使之与registry匹配

    root@ubuntu:# docker tag ubuntu:16.04 dockerhub.xx.com/xxx/ubuntu:16.04

    4、登入dcokerhub,登入一次就可以

    root@restart:# docker login dockerhub.xx.com

    5、上传镜像

     docker push dockerhub.xx.com/xxx/ubuntu:16.04

    参考:

      https://www.cnblogs.com/Javame/p/7389093.html

  • 相关阅读:
    Java 面向对象_继承
    Java 面向对象
    使用 pykafka 进行消费
    oracle 的分页、截断查询
    Day03
    Day02 计算机的组成与编程语言
    Day01 MarkDown的使用
    Java方法的重点
    Scanner的小细节
    Java包机制和Javadoc的使用
  • 原文地址:https://www.cnblogs.com/zheh/p/9168346.html
Copyright © 2011-2022 走看看