2016-01-09 17:45:50 +08:00
|
|
|
[Unit]
|
|
|
|
Description=Docker Application Container Engine
|
|
|
|
Documentation=http://docs.docker.com
|
2024-09-05 14:41:01 +08:00
|
|
|
After=network.target docker.socket containerd.service lvm2-monitor.service SuSEfirewall2.service
|
|
|
|
{% if ansible_os_family != "Suse" %}
|
2021-01-08 06:02:47 +08:00
|
|
|
BindsTo=containerd.service
|
2016-01-09 17:45:50 +08:00
|
|
|
{% endif %}
|
2024-09-05 14:41:01 +08:00
|
|
|
Wants=docker.socket
|
2016-01-09 17:45:50 +08:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=notify
|
2016-12-08 00:18:41 +08:00
|
|
|
{% if docker_storage_options is defined %}
|
2016-12-09 20:56:51 +08:00
|
|
|
Environment="DOCKER_STORAGE_OPTIONS={{ docker_storage_options }}"
|
2016-12-08 00:18:41 +08:00
|
|
|
{% endif %}
|
2016-01-09 17:45:50 +08:00
|
|
|
Environment=GOTRACEBACK=crash
|
2016-08-02 16:55:42 +08:00
|
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
|
|
Delegate=yes
|
|
|
|
KillMode=process
|
2021-01-08 06:02:47 +08:00
|
|
|
ExecStart={{ docker_bin_dir }}/dockerd \
|
2018-04-26 17:52:06 +08:00
|
|
|
{% if ansible_os_family == "Suse" %}
|
2018-12-27 23:26:02 +08:00
|
|
|
--add-runtime oci=/usr/sbin/docker-runc \
|
2018-04-26 17:52:06 +08:00
|
|
|
{% endif %}
|
2016-11-05 05:40:14 +08:00
|
|
|
$DOCKER_OPTS \
|
2016-01-09 17:45:50 +08:00
|
|
|
$DOCKER_STORAGE_OPTIONS \
|
2020-05-13 04:46:21 +08:00
|
|
|
$DOCKER_DNS_OPTIONS
|
2016-08-02 18:42:27 +08:00
|
|
|
TasksMax=infinity
|
2016-01-09 17:45:50 +08:00
|
|
|
LimitNOFILE=1048576
|
|
|
|
LimitNPROC=1048576
|
|
|
|
LimitCORE=infinity
|
|
|
|
TimeoutStartSec=1min
|
2018-03-07 18:36:39 +08:00
|
|
|
# restart the docker process if it exits prematurely
|
|
|
|
Restart=on-failure
|
|
|
|
StartLimitBurst=3
|
|
|
|
StartLimitInterval=60s
|
2022-12-31 00:05:30 +08:00
|
|
|
# Set the cgroup slice of the service so that kube reserved takes effect
|
|
|
|
{% if kube_reserved is defined and kube_reserved|bool %}
|
|
|
|
Slice={{ kube_reserved_cgroups_for_service_slice }}
|
|
|
|
{% endif %}
|
2016-01-09 17:45:50 +08:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|