2019-05-07 19:23:35 +00:00
#jinja2: lstrip_blocks: "True"
2017-07-31 20:07:30 +00:00
[Unit]
2019-04-23 07:20:56 +00:00
Description=Synapse server
2019-01-16 16:05:48 +00:00
{% for service in matrix_synapse_systemd_required_services_list %}
Requires={{ service }}
After={{ service }}
{% endfor %}
{% for service in matrix_synapse_systemd_wanted_services_list %}
Wants={{ service }}
{% endfor %}
2017-07-31 20:07:30 +00:00
[Service]
Type=simple
ExecStartPre=-/usr/bin/docker kill matrix-synapse
ExecStartPre=-/usr/bin/docker rm matrix-synapse
2018-02-20 19:36:08 +00:00
{% if matrix_s3_media_store_enabled %}
# Allow for some time before starting, so that media store can mount.
# Mounting can happen later too, but if we start writing,
# we'd write files to the local filesystem and fusermount will complain.
2019-06-07 09:15:37 +00:00
ExecStartPre=/bin/sleep 3
2018-02-20 19:36:08 +00:00
{% endif %}
2019-01-29 16:52:02 +00:00
2017-07-31 20:07:30 +00:00
ExecStart=/usr/bin/docker run --rm --name matrix-synapse \
2018-09-26 06:11:19 +00:00
--log-driver=none \
2019-01-27 18:25:13 +00:00
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
2019-01-28 09:22:54 +00:00
--cap-drop=ALL \
2019-01-27 18:25:13 +00:00
--entrypoint=python \
2019-01-29 16:52:02 +00:00
--read-only \
--tmpfs=/tmp:rw,noexec,nosuid,size={{ matrix_synapse_tmp_directory_size_mb }}m \
2018-08-08 07:47:03 +00:00
--network={{ matrix_docker_network }} \
2019-01-12 15:53:00 +00:00
-e SYNAPSE_CACHE_FACTOR={{ matrix_synapse_cache_factor }} \
2019-05-24 22:41:04 +00:00
{% if matrix_synapse_container_client_api_host_bind_port %}
-p {{ matrix_synapse_container_client_api_host_bind_port }}:8008 \
2019-02-05 09:07:08 +00:00
{% endif %}
2019-05-24 22:41:04 +00:00
{% if matrix_synapse_federation_enabled and matrix_synapse_tls_federation_listener_enabled and matrix_synapse_container_federation_api_tls_host_bind_port %}
-p {{ matrix_synapse_container_federation_api_tls_host_bind_port }}:8448 \
2018-10-25 15:02:04 +00:00
{% endif %}
2019-05-24 22:41:04 +00:00
{% if matrix_synapse_federation_enabled and matrix_synapse_container_federation_api_plain_host_bind_port %}
-p {{ matrix_synapse_container_federation_api_plain_host_bind_port }}:8048 \
2017-09-12 09:41:44 +00:00
{% endif %}
2019-05-24 22:41:04 +00:00
{% if matrix_synapse_metrics_enabled and matrix_synapse_container_metrics_api_host_bind_port %}
-p {{ matrix_synapse_container_metrics_api_host_bind_port }}:{{ matrix_synapse_metrics_port }} \
2019-01-30 18:31:50 +00:00
{% endif %}
2019-12-05 06:07:15 +00:00
{% if matrix_synapse_manhole_enabled and matrix_synapse_container_manhole_api_host_bind_port %}
-p {{ matrix_synapse_container_manhole_api_host_bind_port }}:9000 \
{% endif %}
2019-01-29 16:52:02 +00:00
-v {{ matrix_synapse_config_dir_path }}:/data:ro \
-v {{ matrix_synapse_run_path }}:/matrix-run:rw \
2019-11-02 12:46:02 +00:00
-v {{ matrix_synapse_storage_path }}:/matrix-media-store-parent:slave \
2018-08-17 06:02:12 +00:00
{% for volume in matrix_synapse_container_additional_volumes %}
-v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \
{% endfor %}
2019-04-30 14:35:18 +00:00
{% for arg in matrix_synapse_container_extra_arguments %}
{{ arg }} \
{% endfor %}
2019-01-27 18:25:13 +00:00
{{ matrix_synapse_docker_image }} \
-m synapse.app.homeserver -c /data/homeserver.yaml
2019-01-29 16:52:02 +00:00
2017-07-31 20:07:30 +00:00
ExecStop=-/usr/bin/docker kill matrix-synapse
ExecStop=-/usr/bin/docker rm matrix-synapse
2019-02-06 07:25:13 +00:00
ExecReload=/usr/bin/docker exec matrix-synapse kill -HUP 1
2017-07-31 20:07:30 +00:00
Restart=always
RestartSec=30
2019-05-16 00:41:45 +00:00
SyslogIdentifier=matrix-synapse
2017-07-31 20:07:30 +00:00
[Install]
WantedBy=multi-user.target