在启动时启动Docker-Engine

时间:2017-03-27 05:10:11

标签: docker boot systemd

当我重新启动主机时,我希望我的docker引擎在启动时启动。

这可能吗? 有人能指出我正确的方向吗?

我的操作系统是RHEL 7.3和 我的/usr/lib/systemd/system/docker.service fiel看起来像:

[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 个答案:

答案 0 :(得分:4)

是。您可以使用此命令启用启动后自动启动docker服务:

 sudo systemctl enable /usr/lib/systemd/system/docker.service