因docker某实例经常无缘无故断开(docker run 没有加–restart=always),需要手动重启,不方便,故需要设置docker自动重启。
建立一个docker实例:

# docker run -i -t --name=centos_test centos /bin/bash
[root@37efbe6ce02f /]# exit
exit

因已经exit,故此实例停止了。
下面对该实例添加进行自动重启功能:
需要在/etc/systemd/system目录下添加文件:

# cat /etc/systemd/system/docker-centos_test.service
[Unit]
Description=centos_test container
Requires=docker.service
After=docker.service

[Service]
Restart=always
ExecStart=/usr/bin/docker start -a centos_test
ExecStop=/usr/bin/docker stop -t 2 centos_test

[Install]
WantedBy=default.target

运行如下命令:

# systemctl enable docker-centos_test.service
# systemctl start docker-centos_test.service
# systemctl status docker-centos_test.service

在此之后,该实例退出也能马上自动重启。

ref:https://docs.docker.com/engine/admin/host_integration/