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 \
|
2018-05-14 11:31:43 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
-v {{ matrix_nginx_riot_web_data_path }}/config.json:/riot-web/webapp/config.json:ro \
|
|
|
|
-v {{ matrix_nginx_riot_web_data_path }}/riot.im.conf:/data/riot.im.conf:ro \
|
2018-08-08 07:47:03 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2017-09-12 09:41:44 +00:00
|
|
|
{% if not matrix_nginx_proxy_enabled %}
|
|
|
|
-p 127.0.0.1:8765:8765 \
|
|
|
|
{% endif %}
|
2018-08-08 06:17:18 +00:00
|
|
|
{{ matrix_docker_image_riot }}
|
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
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|