zoukankan      html  css  js  c++  java
  • docker私服

    1、下载私服镜像
    docker pull registry

    2、启动容器
    docker run -d -p 5000:5000 -v /opt/data/registry:/var/lib/registry --restart=always registry

    3、修改仓库地址
    /lib/systemd/system/docker.service
    [Unit]
    Description=Docker Application Container Engine
    Documentation=https://docs.docker.com
    After=network.target

    [Service]
    Type=notify
    # the default is not to use systemd for cgroups because the delegate issues still
    # exists and systemd currently does not support the cgroup feature set required
    # for containers run by docker
    ExecStart=/usr/bin/dockerd
    ExecReload=/bin/kill -s HUP $MAINPID
    # Having non-zero Limit*s causes performance problems due to accounting overhead
    # in the kernel. We recommend using cgroups to do container-local accounting.
    LimitNOFILE=infinity
    LimitNPROC=infinity
    LimitCORE=infinity
    # Uncomment TasksMax if your systemd version supports it.
    # Only systemd 226 and above support this version.
    #TasksMax=infinity
    TimeoutStartSec=0
    # set delegate yes so that systemd does not reset the cgroups of docker containers
    Delegate=yes
    # kill only the docker process, not all processes in the cgroup
    KillMode=process

    (新增此行)OPTIONS='--selinux-enabled --insecure-registry ip:5000'

    [Install]
    WantedBy=multi-user.target

    4、重启docker生效
    systemctl restart docker.service

    问题:
    http: server gave HTTP response to HTTPS client
    解决:添加如下文件
    root@docker1 docker]# more daemon.json
    {"insecure-registries":["ip:5000"] }

  • 相关阅读:
    [HDU3247]Resource Archiver
    [POJ2243]考研路茫茫——单词情结
    [POJ2778]DNA Sequence
    [bzoj3670] [Noi2014]动物园
    [bzoj3786] 星系探索
    [bzoj1493] [NOI2007]项链工厂
    postgreSQL的设置自增主键初始值
    postgreSQL绝对值
    GitHub上新建或删除仓库Repository
    Intellij Idea上传本地项目到Git
  • 原文地址:https://www.cnblogs.com/bethal/p/6031146.html
Copyright © 2011-2022 走看看