2019-05-07 21:23:35 +02:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-02-20 20:36:08 +01:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix Goofys media store
|
|
|
|
After=docker.service
|
|
|
|
Requires=docker.service
|
2020-12-10 10:36:39 +01:00
|
|
|
DefaultDependencies=no
|
2018-02-20 20:36:08 +01:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2022-11-04 15:37:47 +01:00
|
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
2023-12-06 10:52:23 +01:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} %n
|
2022-11-04 15:39:35 +01:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} rm %n
|
2019-05-16 02:41:45 +02:00
|
|
|
|
2022-11-04 15:39:35 +01:00
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name %n \
|
2018-09-26 08:11:19 +02:00
|
|
|
--log-driver=none \
|
2023-02-17 16:16:50 +01:00
|
|
|
--user={{ matrix_synapse_uid }}:{{ matrix_synapse_gid }} \
|
2020-11-24 09:15:12 +01:00
|
|
|
--mount type=bind,src=/etc/passwd,dst=/etc/passwd,ro \
|
|
|
|
--mount type=bind,src=/etc/group,dst=/etc/group,ro \
|
2021-02-09 21:04:35 +01:00
|
|
|
--mount type=bind,src={{ matrix_s3_media_store_path }},dst=/s3,bind-propagation=shared \
|
2023-02-03 19:36:19 +01:00
|
|
|
--security-opt apparmor=unconfined \
|
2018-09-26 08:11:19 +02:00
|
|
|
--cap-add mknod \
|
|
|
|
--cap-add sys_admin \
|
|
|
|
--device=/dev/fuse \
|
2019-01-12 16:53:00 +01:00
|
|
|
--env-file={{ matrix_synapse_config_dir_path }}/env-goofys \
|
2018-09-26 08:11:19 +02:00
|
|
|
--entrypoint /bin/sh \
|
2018-11-01 07:46:47 +01:00
|
|
|
{{ matrix_s3_goofys_docker_image }} \
|
2019-04-10 07:45:02 +02:00
|
|
|
-c 'goofys -f{% if not matrix_s3_media_store_custom_endpoint_enabled %} --storage-class=STANDARD_IA{% endif %}{% if matrix_s3_media_store_custom_endpoint_enabled %} --endpoint={{ matrix_s3_media_store_custom_endpoint }}{% endif %} --region {{ matrix_s3_media_store_region }} --stat-cache-ttl 60m0s --type-cache-ttl 60m0s --dir-mode 0700 --file-mode 0700 {{ matrix_s3_media_store_bucket_name }} /s3'
|
2019-05-16 02:41:45 +02:00
|
|
|
|
2018-02-20 20:36:08 +01:00
|
|
|
TimeoutStartSec=5min
|
2022-11-04 15:39:35 +01:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} stop %n
|
2023-12-06 10:52:23 +01:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} stop --time={{ devture_systemd_docker_base_container_stop_grace_time_seconds }} %n
|
2022-11-04 15:39:35 +01:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} rm %n
|
2022-02-05 10:47:39 +01:00
|
|
|
ExecStop=-{{ matrix_host_command_fusermount }} -u {{ matrix_s3_media_store_path }}
|
2018-02-20 20:36:08 +01:00
|
|
|
Restart=always
|
|
|
|
RestartSec=5
|
2019-05-16 02:41:45 +02:00
|
|
|
SyslogIdentifier=matrix-goofys
|
2018-02-20 20:36:08 +01:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|