2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2018-02-20 19:36:08 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix Goofys media store
|
|
|
|
After=docker.service
|
|
|
|
Requires=docker.service
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2018-02-20 19:36:08 +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:39:35 +00:00
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} kill %n
|
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_docker }} rm %n
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2022-11-04 14:39:35 +00:00
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name %n \
|
2018-09-26 06:11:19 +00:00
|
|
|
--log-driver=none \
|
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
2020-11-24 08:15:12 +00:00
|
|
|
--mount type=bind,src=/etc/passwd,dst=/etc/passwd,ro \
|
|
|
|
--mount type=bind,src=/etc/group,dst=/etc/group,ro \
|
2021-02-09 20:04:35 +00:00
|
|
|
--mount type=bind,src={{ matrix_s3_media_store_path }},dst=/s3,bind-propagation=shared \
|
2018-09-26 06:11:19 +00:00
|
|
|
--security-opt apparmor:unconfined \
|
|
|
|
--cap-add mknod \
|
|
|
|
--cap-add sys_admin \
|
|
|
|
--device=/dev/fuse \
|
2019-01-12 15:53:00 +00:00
|
|
|
--env-file={{ matrix_synapse_config_dir_path }}/env-goofys \
|
2018-09-26 06:11:19 +00:00
|
|
|
--entrypoint /bin/sh \
|
2018-11-01 06:46:47 +00:00
|
|
|
{{ matrix_s3_goofys_docker_image }} \
|
2019-04-10 05:45:02 +00: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 00:41:45 +00:00
|
|
|
|
2018-02-20 19:36:08 +00:00
|
|
|
TimeoutStartSec=5min
|
2022-11-04 14:39:35 +00:00
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} stop %n
|
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} kill %n
|
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_docker }} rm %n
|
2022-02-05 09:47:39 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_fusermount }} -u {{ matrix_s3_media_store_path }}
|
2018-02-20 19:36:08 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=5
|
2019-05-16 00:41:45 +00:00
|
|
|
SyslogIdentifier=matrix-goofys
|
2018-02-20 19:36:08 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|