Sfoglia il codice sorgente

Do not mount certain Docker volumes as read-write unnecessarily

pull/6/head
Slavi Pantaleev 8 anni fa
parent
commit
767b321f60
2 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +2
    -2
      roles/matrix-server/templates/systemd/matrix-nginx-proxy.service.j2
  2. +1
    -1
      roles/matrix-server/templates/systemd/matrix-riot-web.service.j2

+ 2
- 2
roles/matrix-server/templates/systemd/matrix-nginx-proxy.service.j2 Vedi File

@@ -16,8 +16,8 @@ ExecStart=/usr/bin/docker run --rm --name matrix-nginx-proxy \
-p 443:443 \
--link matrix-synapse:synapse \
--link matrix-riot-web:riot \
-v {{ matrix_nginx_proxy_confd_path }}:/etc/nginx/conf.d \
-v {{ matrix_ssl_certs_path }}:{{ matrix_ssl_certs_path }} \
-v {{ matrix_nginx_proxy_confd_path }}:/etc/nginx/conf.d:ro \
-v {{ matrix_ssl_certs_path }}:{{ matrix_ssl_certs_path }}:ro \
{{ docker_nginx_image }}
ExecStop=-/usr/bin/docker kill matrix-nginx-proxy
ExecStop=-/usr/bin/docker rm matrix-nginx-proxy


+ 1
- 1
roles/matrix-server/templates/systemd/matrix-riot-web.service.j2 Vedi File

@@ -8,7 +8,7 @@ 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 \
-v {{ matrix_nginx_riot_web_data_path }}:/data \
-v {{ matrix_nginx_riot_web_data_path }}:/data:ro \
{% if not matrix_nginx_proxy_enabled %}
-p 127.0.0.1:8765:8765 \
{% endif %}


Caricamento…
Annulla
Salva