2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2017-07-31 20:07:30 +00:00
|
|
|
[Unit]
|
2019-01-16 16:05:48 +00:00
|
|
|
Description=Matrix riot-web server
|
|
|
|
{% for service in matrix_riot_web_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
ExecStartPre=-/usr/bin/docker kill matrix-riot-web
|
|
|
|
ExecStartPre=-/usr/bin/docker rm matrix-riot-web
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2017-07-31 20:07:30 +00:00
|
|
|
ExecStart=/usr/bin/docker run --rm --name matrix-riot-web \
|
2018-09-26 06:11:19 +00:00
|
|
|
--log-driver=none \
|
2019-01-27 18:25:13 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
2019-01-28 09:22:54 +00:00
|
|
|
--cap-drop=ALL \
|
2019-01-29 16:52:02 +00:00
|
|
|
--read-only \
|
2019-02-16 09:48:17 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-05-24 22:41:04 +00:00
|
|
|
{% if matrix_riot_web_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_riot_web_container_http_host_bind_port }}:8080 \
|
2019-02-16 09:48:17 +00:00
|
|
|
{% endif %}
|
2019-01-29 16:52:02 +00:00
|
|
|
--tmpfs=/tmp:rw,noexec,nosuid,size=10m \
|
2019-01-27 18:25:13 +00:00
|
|
|
-v {{ matrix_riot_web_data_path }}/nginx.conf:/etc/nginx/nginx.conf:ro \
|
|
|
|
-v /dev/null:/etc/nginx/conf.d/default.conf:ro \
|
2019-05-27 09:25:44 +00:00
|
|
|
-v {{ matrix_riot_web_data_path }}/config.json:/app/config.json:ro \
|
2019-02-16 09:48:17 +00:00
|
|
|
{% if matrix_riot_web_embedded_pages_home_path is not none %}
|
2019-05-27 09:25:44 +00:00
|
|
|
-v {{ matrix_riot_web_data_path }}/home.html:/app/home.html:ro \
|
2017-09-12 09:41:44 +00:00
|
|
|
{% endif %}
|
2019-05-27 09:25:44 +00:00
|
|
|
-v {{ matrix_riot_web_data_path }}/welcome.html:/app/welcome.html:ro \
|
2019-04-30 14:35:18 +00:00
|
|
|
{% for arg in matrix_riot_web_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2018-11-01 06:46:47 +00:00
|
|
|
{{ matrix_riot_web_docker_image }}
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2017-07-31 20:07:30 +00:00
|
|
|
ExecStop=-/usr/bin/docker kill matrix-riot-web
|
|
|
|
ExecStop=-/usr/bin/docker rm matrix-riot-web
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2019-05-16 00:41:45 +00:00
|
|
|
SyslogIdentifier=matrix-riot-web
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|