c12s-kubespray/roles/container-engine/docker/templates/docker.service.j2

46 lines
1.7 KiB
Plaintext
Raw Normal View History

2016-01-09 09:45:50 +00:00
[Unit]
Description=Docker Application Container Engine
Documentation=http://docs.docker.com
{% if ansible_os_family == "RedHat" %}
After=network.target {{ ' docker-storage-setup.service' if docker_container_storage_setup else '' }}{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }}
{{ 'Wants=docker-storage-setup.service' if docker_container_storage_setup else '' }}
2016-01-09 09:45:50 +00:00
{% elif ansible_os_family == "Debian" %}
After=network.target docker.socket{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }}
Wants=docker.socket
{% elif ansible_os_family == "Suse" %}
After=network.target{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }}
2016-01-09 09:45:50 +00:00
{% endif %}
[Service]
Type=notify
2016-12-07 16:18:41 +00:00
{% if docker_storage_options is defined %}
Environment="DOCKER_STORAGE_OPTIONS={{ docker_storage_options }}"
2016-12-07 16:18:41 +00:00
{% endif %}
2016-01-09 09:45:50 +00:00
Environment=GOTRACEBACK=crash
ExecReload=/bin/kill -s HUP $MAINPID
Delegate=yes
KillMode=process
ExecStart={{ docker_bin_dir }}/docker{% if installed_docker_version.stdout is version('17.03', '<') %} daemon{% else %}d{% endif %} \
{% if ansible_os_family == "Suse" %}
--add-runtime oci=/usr/sbin/docker-runc \
{% endif %}
2016-11-04 21:40:14 +00:00
$DOCKER_OPTS \
2016-01-09 09:45:50 +00:00
$DOCKER_STORAGE_OPTIONS \
$DOCKER_NETWORK_OPTIONS \
$DOCKER_DNS_OPTIONS \
2016-11-04 21:40:14 +00:00
$INSECURE_REGISTRY
2018-02-21 16:26:18 +00:00
{% if not is_atomic and systemd_version.stdout|int >= 226 %}
TasksMax=infinity
{% endif %}
2016-01-09 09:45:50 +00:00
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
TimeoutStartSec=1min
# restart the docker process if it exits prematurely
Restart=on-failure
StartLimitBurst=3
StartLimitInterval=60s
2016-01-09 09:45:50 +00:00
[Install]
WantedBy=multi-user.target