2017-03-27 10 views
0

ホストを再起動すると、起動時にドッカーエンジンが起動します。起動時にDocker-Engineを起動する

これは可能ですか? 誰かが私を正しい方向に向けることができますか?

私のOSはRHEL 7.3とされ 私/usr/lib/systemd/system/docker.serviceの金融商品取引法は、次のようになります。

[Unit] 
Description=Docker Application Container Engine 
Documentation=https://docs.docker.com 
After=network.target firewalld.service 

[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 
Restart=always 
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 

[Install] 
WantedBy=multi-user.target 

答えて

1

はい。このコマンドを使用すると、起動後にドッカーサービスの自動開始を有効にすることができます。

sudo systemctl enable /usr/lib/systemd/system/docker.service 
関連する問題