Stop containers gracefully, instead of outright killing them
This commit is contained in:
@ -8,7 +8,7 @@ DefaultDependencies=no
|
||||
[Service]
|
||||
Type=simple
|
||||
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
||||
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} kill %n
|
||||
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} %n
|
||||
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} rm %n
|
||||
|
||||
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name %n \
|
||||
@ -28,7 +28,7 @@ ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name
|
||||
|
||||
TimeoutStartSec=5min
|
||||
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} stop %n
|
||||
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} kill %n
|
||||
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} %n
|
||||
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} rm %n
|
||||
ExecStop=-{{ matrix_host_command_fusermount }} -u {{ matrix_s3_media_store_path }}
|
||||
Restart=always
|
||||
|
Reference in New Issue
Block a user