a56d9de502
* Add restart for weave service unit * Reuse docker_bin_dir everythere * Limit systemd managed docker containers by CPU/RAM. Do not configure native systemd limits due to the lack of consensus in the kernel community requires out-of-tree kernel patches. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
34 lines
893 B
Django/Jinja
34 lines
893 B
Django/Jinja
[Unit]
|
|
Description=Docker Application Container Engine
|
|
Documentation=http://docs.docker.com
|
|
{% if ansible_os_family == "RedHat" %}
|
|
After=network.target docker-storage-setup.service
|
|
Wants=docker-storage-setup.service
|
|
{% elif ansible_os_family == "Debian" %}
|
|
After=network.target docker.socket
|
|
Wants=docker.socket
|
|
{% endif %}
|
|
|
|
[Service]
|
|
Type=notify
|
|
{% if docker_storage_options is defined %}
|
|
Environment="DOCKER_STORAGE_OPTIONS={{ docker_storage_options }}"
|
|
{% endif %}
|
|
Environment=GOTRACEBACK=crash
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
Delegate=yes
|
|
KillMode=process
|
|
ExecStart={{ docker_bin_dir }}/docker daemon \
|
|
$DOCKER_OPTS \
|
|
$DOCKER_STORAGE_OPTIONS \
|
|
$DOCKER_NETWORK_OPTIONS \
|
|
$INSECURE_REGISTRY
|
|
TasksMax=infinity
|
|
LimitNOFILE=1048576
|
|
LimitNPROC=1048576
|
|
LimitCORE=infinity
|
|
TimeoutStartSec=1min
|
|
Restart=on-abnormal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|