docker私服

Posted bethal

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
解决:添加如下文件
[email protected] docker]# more daemon.json
{"insecure-registries":["ip:5000"] }

以上是关于docker私服的主要内容,如果未能解决你的问题,请参考以下文章

基于docker registry镜像安装私服docker hub

《果然新鲜》电商项目(11)- Docker搭建Maven私服仓库

docker私服

docker学习:docker镜像分层原理及本地镜像推送到阿里云或私服

docker学习:docker镜像分层原理及本地镜像推送到阿里云或私服

docker私服搭建nexus3