2020-10-17 06:21:58 +02:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=Matrix Dynamic DNS
|
|
|
|
{% for service in matrix_dynamic_dns_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_dynamic_dns_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 10:36:39 +01:00
|
|
|
DefaultDependencies=no
|
2020-10-17 06:21:58 +02:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2022-11-04 15:37:47 +01:00
|
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
2023-12-06 10:52:23 +01:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} matrix-dynamic-dns 2>/dev/null || true'
|
2022-11-04 15:40:25 +01:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-dynamic-dns 2>/dev/null || true'
|
2024-01-15 10:17:57 +01:00
|
|
|
|
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \
|
|
|
|
--rm \
|
|
|
|
--name=matrix-dynamic-dns \
|
2020-10-17 06:21:58 +02:00
|
|
|
--log-driver=none \
|
2024-01-13 16:17:03 +01:00
|
|
|
--network={{ matrix_dynamic_dns_container_network }} \
|
2020-10-17 06:21:58 +02:00
|
|
|
-e PUID={{ matrix_user_uid }} \
|
|
|
|
-e PGID={{ matrix_user_gid }} \
|
2024-01-13 14:51:12 +01:00
|
|
|
--mount type=bind,src={{ matrix_dynamic_dns_config_path }},dst=/config \
|
2020-10-17 06:21:58 +02:00
|
|
|
{% for arg in matrix_dynamic_dns_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
{{ matrix_dynamic_dns_docker_image }}
|
|
|
|
|
2024-01-15 10:17:57 +01:00
|
|
|
|
|
|
|
{% for network in matrix_dynamic_dns_container_additional_networks %}
|
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} matrix-dynamic-dns
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} start --attach matrix-dynamic-dns
|
|
|
|
|
2023-12-06 10:52:23 +01:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} matrix-dynamic-dns 2>/dev/null || true'
|
2022-11-04 15:40:25 +01:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-dynamic-dns 2>/dev/null || true'
|
2020-10-17 06:21:58 +02:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-dynamic-dns
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|