2020-03-23 15:19:15 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
|
|
|
[Unit]
|
|
|
|
Description=Matrix jitsi-jvb server
|
|
|
|
{% for service in matrix_jitsi_jvb_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-jvb 2>/dev/null'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-jvb 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-jvb \
|
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=jvb.meet.jitsi \
|
2020-04-08 07:23:51 +00:00
|
|
|
--env-file={{ matrix_jitsi_jvb_base_path }}/env \
|
2020-03-23 15:19:15 +00:00
|
|
|
{% if matrix_jitsi_jvb_container_rtp_udp_host_bind_port %}
|
|
|
|
-p {{ matrix_jitsi_jvb_container_rtp_udp_host_bind_port }}:{{ matrix_jitsi_jvb_rtp_udp_port }}/udp \
|
|
|
|
{% endif %}
|
|
|
|
{% if matrix_jitsi_jvb_container_rtp_tcp_host_bind_port %}
|
|
|
|
-p {{ matrix_jitsi_jvb_container_rtp_tcp_host_bind_port }}:{{ matrix_jitsi_jvb_rtp_tcp_port }} \
|
|
|
|
{% endif %}
|
2020-11-27 15:57:07 +00:00
|
|
|
{% if matrix_jitsi_jvb_container_colibri_ws_host_bind_port %}
|
|
|
|
-p {{ matrix_jitsi_jvb_container_colibri_ws_host_bind_port }}:9090 \
|
|
|
|
{% endif %}
|
2020-11-24 08:15:12 +00:00
|
|
|
--mount type=bind,src={{ matrix_jitsi_jvb_config_path }},dst=/config \
|
2020-03-23 15:19:15 +00:00
|
|
|
{% for arg in matrix_jitsi_jvb_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
|
|
|
{{ matrix_jitsi_jvb_docker_image }}
|
|
|
|
|
2021-01-27 08:22:46 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-jvb 2>/dev/null'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-jvb 2>/dev/null'
|
2020-03-23 15:19:15 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
SyslogIdentifier=matrix-jitsi-jvb
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|