docker - 启动时启动 Docker-Engine

标签 docker boot systemd

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

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

我的操作系统是 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

最佳答案

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

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

关于docker - 启动时启动 Docker-Engine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43038357/

相关文章:

macos - 如何修复 grub 以启动 Mac OS X Yosemite?

cocoa - 在 Cocoa 中检查 MountPath 分区是否可引导

c - 用于控制系统服务的简单 C 或 C++ API

.net - 在 ubuntu 18.4 上为 .net 应用程序创建服务期间出错。可执行路径不是绝对的 :

database - 将 Tomcat 参数传递给 Docker

linux - 本地主机在 Docker 教程期间拒绝访问端口

shell - 在 Raspberry PI 2 上使用 Ubuntu MATE 15.04 引导至 shell

c - systemd 如何向服务发送消息以引发 sd_notify(3) 响应?

java - 部署 Docker 镜像时 Heroku 名称无效?如何调试?

powershell - 无法使用docker run -v指定当前目录