2017-07-31 22:07:30 +02:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix Riot web server
|
|
|
|
After=docker.service
|
|
|
|
Requires=docker.service
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
ExecStartPre=-/usr/bin/docker kill matrix-riot-web
|
|
|
|
ExecStartPre=-/usr/bin/docker rm matrix-riot-web
|
|
|
|
ExecStart=/usr/bin/docker run --rm --name matrix-riot-web \
|
2018-09-26 08:11:19 +02:00
|
|
|
--log-driver=none \
|
2019-01-11 20:20:17 +01:00
|
|
|
-v {{ matrix_riot_web_data_path }}/config.json:/etc/riot-web/config.json:ro \
|
|
|
|
-v {{ matrix_riot_web_data_path }}/home.html:/etc/riot-web/home.html:ro \
|
2018-08-08 09:47:03 +02:00
|
|
|
--network={{ matrix_docker_network }} \
|
2017-09-12 11:41:44 +02:00
|
|
|
{% if not matrix_nginx_proxy_enabled %}
|
2019-01-11 20:20:17 +01:00
|
|
|
-p 127.0.0.1:8765:80 \
|
2017-09-12 11:41:44 +02:00
|
|
|
{% endif %}
|
2018-11-01 07:46:47 +01:00
|
|
|
{{ matrix_riot_web_docker_image }}
|
2017-07-31 22:07:30 +02:00
|
|
|
ExecStop=-/usr/bin/docker kill matrix-riot-web
|
|
|
|
ExecStop=-/usr/bin/docker rm matrix-riot-web
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|