Error response from daemon: Get https://10.131.178.174/v2/: x509: certificate has expired or is not
解决:需要到docker.service中修改下参数就可以了!
·
解决:
需要到docker.service中修改下参数就可以了!
/usr/lib/systemd/system/docker.service
[root@bkapp1 ~]# cat /usr/lib/systemd/system/docker.service
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network-online.target firewalld.service
Wants=network-online.target
[Service]
Type=notify
# the default is not to use systemd for cgroups because the delegate issues stil l
# exists and systemd currently does not support the cgroup feature set required
# for containers run by docker
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
ExecStart=/usr/bin/dockerd --insecure-registry 10.131.178.174
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
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 containe rs
Delegate=yes
# kill only the docker process, not all processes in the cgroup
KillMode=process
# restart the docker process if it exits prematurely
Restart=on-failure
StartLimitBurst=3
StartLimitInterval=60s
[Install]
WantedBy=multi-user.target
重点这句:
ExecStart=/usr/bin/dockerd --insecure-registry 10.131.178.174
更多推荐
已为社区贡献3条内容
所有评论(0)