3fd6fd647f
Moving away from using the default bridge network to using our own. This isolates our services from other Docker containers running on the default network on the same host. The benefits are that: - isolation is a little better - we no longer share a default bridge network with any other containers that might be running on the host - there are no longer hard dependencies - we do service discovery by DNS name, and not via explicit `--link` usage during container start, so containers can start out of order and fail without bringing down others with them (`matrix-nginx-proxy` can continue running, even if one of the other services dies) In the future, when other services get introduced, the increased resilience and simplicity will help as well.
29 lines
861 B
Django/Jinja
29 lines
861 B
Django/Jinja
[Unit]
|
|
Description=Matrix nginx proxy server
|
|
After=docker.service
|
|
Requires=docker.service
|
|
Wants=matrix-synapse.service
|
|
{% if matrix_riot_web_enabled %}
|
|
Wants=matrix-riot-web.service
|
|
{% endif %}
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStartPre=-/usr/bin/docker kill matrix-nginx-proxy
|
|
ExecStartPre=-/usr/bin/docker rm matrix-nginx-proxy
|
|
ExecStart=/usr/bin/docker run --rm --name matrix-nginx-proxy \
|
|
--network {{ matrix_docker_network }} \
|
|
-p 80:80 \
|
|
-p 443:443 \
|
|
-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
|
|
ExecReload=/usr/bin/docker exec matrix-nginx-proxy /usr/sbin/nginx -s reload
|
|
Restart=always
|
|
RestartSec=30
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|