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 }}
2021-01-25 10:14:46 +00:00
2019-01-16 16:05:48 +00:00
{% endfor %}
{% for service in matrix_synapse_systemd_wanted_services_list %}
Wants={{ service }}
{% endfor %}
2021-01-25 10:14:46 +00:00
{% if matrix_synapse_workers_enabled %}
{% for matrix_synapse_worker_details in matrix_synapse_workers_enabled_list %}
2022-09-15 04:05:25 +00:00
Wants={{ matrix_synapse_worker_details.name }}.service
2021-01-25 10:14:46 +00:00
{% endfor %}
{% endif %}
2020-12-10 09:36:39 +00:00
DefaultDependencies=no
2017-07-31 20:07:30 +00:00
[Service]
Type=simple
2022-11-04 14:37:47 +00:00
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
2022-11-04 14:40:25 +00:00
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill matrix-synapse 2>/dev/null || true'
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-synapse 2>/dev/null || true'
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.
2020-05-27 16:53:52 +00:00
ExecStartPre={{ matrix_host_command_sleep }} 3
2018-02-20 19:36:08 +00:00
{% endif %}
2019-01-29 16:52:02 +00:00
2023-02-17 14:13:38 +00:00
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \
--rm \
--name=matrix-synapse \
2018-09-26 06:11:19 +00:00
--log-driver=none \
2023-02-17 15:16:50 +00:00
--user={{ matrix_synapse_uid }}:{{ matrix_synapse_gid }} \
2019-01-28 09:22:54 +00:00
--cap-drop=ALL \
2019-01-29 16:52:02 +00:00
--read-only \
--tmpfs=/tmp:rw,noexec,nosuid,size={{ matrix_synapse_tmp_directory_size_mb }}m \
2023-05-02 10:22:31 +00:00
--network={{ matrix_synapse_container_network }} \
2019-05-24 22:41:04 +00:00
{% if matrix_synapse_container_client_api_host_bind_port %}
2021-11-15 20:43:05 +00:00
-p {{ matrix_synapse_container_client_api_host_bind_port }}:{{ matrix_synapse_container_client_api_port }} \
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 %}
2021-11-15 12:56:11 +00:00
-p {{ matrix_synapse_container_federation_api_tls_host_bind_port }}:{{ matrix_synapse_container_federation_api_tls_port }} \
2018-10-25 15:02:04 +00:00
{% endif %}
2022-03-14 02:45:46 +00:00
{% if matrix_synapse_federation_enabled and matrix_synapse_federation_port_enabled and matrix_synapse_container_federation_api_plain_host_bind_port %}
2021-11-15 12:56:11 +00:00
-p {{ matrix_synapse_container_federation_api_plain_host_bind_port }}:{{ matrix_synapse_container_federation_api_plain_port }} \
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 %}
2020-11-24 08:15:12 +00:00
--mount type=bind,src={{ matrix_synapse_config_dir_path }},dst=/data,ro \
--mount type=bind,src={{ matrix_synapse_storage_path }},dst=/matrix-media-store-parent,bind-propagation=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 %}
2022-08-24 05:38:12 +00:00
{% for arg in matrix_synapse_container_arguments %}
2019-04-30 14:35:18 +00:00
{{ arg }} \
{% endfor %}
2022-10-14 13:33:19 +00:00
{{ matrix_synapse_docker_image_final }} \
2021-03-19 06:16:59 +00:00
run -m synapse.app.homeserver -c /data/homeserver.yaml
2019-01-29 16:52:02 +00:00
2023-02-17 14:13:38 +00:00
{% for network in matrix_synapse_container_additional_networks %}
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} matrix-synapse
{% endfor %}
ExecStart={{ devture_systemd_docker_base_host_command_docker }} start --attach matrix-synapse
2022-11-04 14:40:25 +00:00
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill matrix-synapse 2>/dev/null || true'
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-synapse 2>/dev/null || true'
2023-02-17 14:13:38 +00:00
2022-11-04 14:39:35 +00:00
ExecReload={{ devture_systemd_docker_base_host_command_docker }} exec matrix-synapse /bin/sh -c '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