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.
34 lines
1.3 KiB
34 lines
1.3 KiB
5 years ago
|
#jinja2: lstrip_blocks: "True"
|
||
|
[Unit]
|
||
|
Description=Matrix jitsi-jicofo server
|
||
|
{% for service in matrix_jitsi_jicofo_systemd_required_services_list %}
|
||
|
Requires={{ service }}
|
||
|
After={{ service }}
|
||
|
{% endfor %}
|
||
4 years ago
|
DefaultDependencies=no
|
||
5 years ago
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
4 years ago
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
||
3 years ago
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-jicofo 2>/dev/null || true'
|
||
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-jicofo 2>/dev/null || true'
|
||
5 years ago
|
|
||
5 years ago
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-jitsi-jicofo \
|
||
5 years ago
|
--log-driver=none \
|
||
|
--network={{ matrix_docker_network }} \
|
||
|
--env-file={{ matrix_jitsi_jicofo_base_path }}/env \
|
||
4 years ago
|
--mount type=bind,src={{ matrix_jitsi_jicofo_config_path }},dst=/config \
|
||
5 years ago
|
{% for arg in matrix_jitsi_jicofo_container_extra_arguments %}
|
||
|
{{ arg }} \
|
||
|
{% endfor %}
|
||
|
{{ matrix_jitsi_jicofo_docker_image }}
|
||
|
|
||
3 years ago
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-jitsi-jicofo 2>/dev/null || true'
|
||
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-jitsi-jicofo 2>/dev/null || true'
|
||
5 years ago
|
Restart=always
|
||
|
RestartSec=30
|
||
|
SyslogIdentifier=matrix-jitsi-jicofo
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|