Switch to a better riot-web image (avhost/docker-matrix-riot -> bubuntux/riot-web)

The new container image is about 20x smaller in size, faster to start up, etc.

This also fixes #26 (Github issue).
This commit is contained in:
Slavi Pantaleev
2019-01-11 21:20:17 +02:00
parent 14a237885a
commit 6d253ff571
5 changed files with 5 additions and 11 deletions

View File

@ -9,13 +9,11 @@ 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 \
--log-driver=none \
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
-v {{ matrix_riot_web_data_path }}/config.json:/riot-web/webapp/config.json:ro \
-v {{ matrix_riot_web_data_path }}/home.html:/riot-web/webapp/home.html:ro \
-v {{ matrix_riot_web_data_path }}/riot.im.conf:/data/riot.im.conf:ro \
-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 \
--network={{ matrix_docker_network }} \
{% if not matrix_nginx_proxy_enabled %}
-p 127.0.0.1:8765:8765 \
-p 127.0.0.1:8765:80 \
{% endif %}
{{ matrix_riot_web_docker_image }}
ExecStop=-/usr/bin/docker kill matrix-riot-web