2020-03-23 15:19:15 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=Matrix jitsi-prosody server
|
|
|
|
{% for service in matrix_jitsi_prosody_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2020-03-23 15:19:15 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2021-01-14 22:21:55 +00:00
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2021-01-27 08:22:46 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-prosody 2>/dev/null'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-prosody 2>/dev/null'
|
2020-03-23 15:19:15 +00:00
|
|
|
|
2020-05-27 16:53:52 +00:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-jitsi-prosody \
|
2020-03-23 15:19:15 +00:00
|
|
|
--log-driver=none \
|
|
|
|
--network={{ matrix_docker_network }} \
|
2021-06-22 18:29:49 +00:00
|
|
|
--network-alias={{ matrix_jitsi_xmpp_server }} \
|
2021-05-23 12:06:18 +00:00
|
|
|
{% if matrix_jitsi_prosody_container_http_host_bind_port %}
|
2021-05-22 13:53:42 +00:00
|
|
|
-p {{ matrix_jitsi_prosody_container_http_host_bind_port }}:5280 \
|
2021-05-21 13:26:06 +00:00
|
|
|
{% endif %}
|
2020-03-23 15:19:15 +00:00
|
|
|
--env-file={{ matrix_jitsi_prosody_base_path }}/env \
|
2020-11-24 08:15:12 +00:00
|
|
|
--mount type=bind,src={{ matrix_jitsi_prosody_config_path }},dst=/config \
|
|
|
|
--mount type=bind,src={{ matrix_jitsi_prosody_plugins_path }},dst=/prosody-plugins-custom \
|
2020-03-23 15:19:15 +00:00
|
|
|
{% for arg in matrix_jitsi_prosody_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
{{ matrix_jitsi_prosody_docker_image }}
|
|
|
|
|
2022-02-05 09:47:39 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-prosody 2>/dev/null'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-prosody 2>/dev/null'
|
2020-03-23 15:19:15 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-jitsi-prosody
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|