首页 > 其他 > 详细

centos7下载自定义仓库的镜像设置方法

时间:2017-02-13 18:36:14      阅读:464      评论:0      收藏:0      [点我收藏+]

1、vim /usr/lib/systemd/system/docker.service

 

Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network.target docker.socket
Requires=docker.socket

[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/docker daemon -H fd:// 
MountFlags=slave
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
TimeoutStartSec=0
# set delegate yes so that systemd does not reset the cgroups of docker containers
Delegate=yes

[Install]
WantedBy=multi-user.target

将上面的ExecStart后面追加自已的

ExecStart=/usr/bin/docker daemon -H fd:// --insecure-registry=技术分享172.16.101.192 

 

centos7下载自定义仓库的镜像设置方法

原文:http://www.cnblogs.com/boshen-hzb/p/6394683.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!