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

35 lines
879 B
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
2016-01-09 09:45:50 +00:00
Wants=docker-storage-setup.service
{% elif ansible_os_family == "Debian" %}
After=network.target docker.socket
Wants=docker.socket
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}}"
{% endif %}
2016-01-09 09:45:50 +00:00
Environment=GOTRACEBACK=crash
ExecReload=/bin/kill -s HUP $MAINPID
Delegate=yes
KillMode=process
2016-01-09 09:45:50 +00:00
ExecStart=/usr/bin/docker daemon \
2016-11-04 21:40:14 +00:00
$DOCKER_OPTS \
2016-01-09 09:45:50 +00:00
$DOCKER_STORAGE_OPTIONS \
$DOCKER_NETWORK_OPTIONS \
2016-11-04 21:40:14 +00:00
$INSECURE_REGISTRY
TasksMax=infinity
2016-01-09 09:45:50 +00:00
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
TimeoutStartSec=1min
Restart=on-abnormal
2016-01-09 09:45:50 +00:00
[Install]
WantedBy=multi-user.target