2017-07-31 20:07:30 +00: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 \
|
2017-10-01 08:36:30 +00:00
|
|
|
-v {{ matrix_nginx_riot_web_data_path }}:/data:ro \
|
2017-09-12 09:41:44 +00:00
|
|
|
{% if not matrix_nginx_proxy_enabled %}
|
|
|
|
-p 127.0.0.1:8765:8765 \
|
|
|
|
{% endif %}
|
2017-07-31 20:07:30 +00:00
|
|
|
{{ docker_riot_image }}
|
|
|
|
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
|