From 9b98ebcdd167f24968c7c0d63a17ab264e3c0b96 Mon Sep 17 00:00:00 2001 From: chendelin1982 <27513732@qq.com> Date: Fri, 10 Sep 2021 16:59:25 +0800 Subject: [PATCH] Create docker.service --- deploy/docker.service | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 deploy/docker.service diff --git a/deploy/docker.service b/deploy/docker.service new file mode 100644 index 00000000..1c3e748a --- /dev/null +++ b/deploy/docker.service @@ -0,0 +1,22 @@ +[Unit] +Description=Docker Application Container Engine +Documentation=https://docs.docker.com +After=network-online.target firewalld.service containerd.service +Wants=network-online.target +Requires=docker.socket containerd.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 -H fd:// --containerd=/run/containerd/containerd.sock -H tcp://0.0.0.0:9009 +ExecReload=/bin/kill -s HUP $MAINPID +TimeoutSec=0 +RestartSec=2 +Restart=always + +# Note that StartLimit* options were moved from "Service" to "Unit" in systemd 229. +# Both the old, and new location are accepted by systemd 229 and up, so using the old location +# to make them work for either version of systemd. +StartLimitBurst=3