You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.5 KiB

3 years ago
#jinja2: lstrip_blocks: "True"
[Unit]
3 years ago
Description=Matrix jitsi-jibri server
{% for service in matrix_jitsi_jibri_systemd_required_services_list %}
3 years ago
Requires={{ service }}
After={{ service }}
{% endfor %}
DefaultDependencies=no
[Service]
Type=simple
Environment="HOME={{ matrix_systemd_unit_home_path }}"
3 years ago
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-jibri 2>/dev/null'
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-jibri 2>/dev/null'
3 years ago
3 years ago
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-jitsi-jibri \
3 years ago
--log-driver=none \
--network={{ matrix_docker_network }} \
3 years ago
--env-file={{ matrix_jitsi_jibri_base_path }}/env \
# --device=/dev/snd:/dev/snd \
--mount type=bind,src=/dev/snd,dst=/dev/snd \
--mount type=bind,src={{ matrix_jitsi_jibri_config_path }},dst=/config \
# --volume={{ matrix_jitsi_jibri_config_path }}:/config:Z \
--volume=/dev/shm:/dev/shm \
--cap-add=SYS_ADMIN \
--cap-add=NET_BIND_SERVICE \
{% for arg in matrix_jitsi_jibri_container_extra_arguments %}
3 years ago
{{ arg }} \
{% endfor %}
3 years ago
{{ matrix_jitsi_jibri_docker_image }}
3 years ago
3 years ago
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-jibri 2>/dev/null'
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-jibri 2>/dev/null'
3 years ago
Restart=always
RestartSec=30
3 years ago
SyslogIdentifier=matrix-jitsi-jibri
3 years ago
[Install]
WantedBy=multi-user.target