2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2017-07-31 20:07:30 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix Postgres server
|
|
|
|
After=docker.service
|
|
|
|
Requires=docker.service
|
2020-12-10 09:36:39 +00:00
|
|
|
DefaultDependencies=no
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
2021-01-14 22:21:55 +00:00
|
|
|
Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-postgres 2>/dev/null || true'
|
|
|
|
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-postgres 2>/dev/null || true'
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2021-10-30 06:53:56 +00:00
|
|
|
# We need /dev/shm to be larger than the default to allow VACUUM to work.
|
|
|
|
# See:
|
|
|
|
# - https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1362
|
|
|
|
# - https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/1268
|
2020-05-27 16:53:52 +00:00
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-postgres \
|
2018-09-26 06:11:19 +00:00
|
|
|
--log-driver=none \
|
2017-07-31 20:07:30 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_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=100m \
|
|
|
|
--tmpfs=/run/postgresql:rw,noexec,nosuid,size=100m \
|
2021-10-30 11:10:39 +00:00
|
|
|
--shm-size=256m \
|
2018-08-08 07:47:03 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-06-10 01:35:35 +00:00
|
|
|
{% if matrix_postgres_container_postgres_bind_port %}
|
|
|
|
-p {{ matrix_postgres_container_postgres_bind_port }}:5432 \
|
|
|
|
{% endif %}
|
2019-01-12 15:53:00 +00:00
|
|
|
--env-file={{ matrix_postgres_base_path }}/env-postgres-server \
|
2020-11-24 08:15:12 +00:00
|
|
|
--mount type=bind,src={{ matrix_postgres_data_path }},dst=/var/lib/postgresql/data \
|
|
|
|
--mount type=bind,src=/etc/passwd,dst=/etc/passwd,ro \
|
2019-04-30 14:35:18 +00:00
|
|
|
{% for arg in matrix_postgres_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2020-09-11 12:29:10 +00:00
|
|
|
{{ matrix_postgres_docker_image_to_use }} \
|
2021-02-19 14:33:21 +00:00
|
|
|
postgres {{ matrix_postgres_process_extra_arguments|join(' ') }}
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2022-04-11 06:05:33 +00:00
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-postgres 2>/dev/null || true'
|
|
|
|
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-postgres 2>/dev/null || true'
|
2017-07-31 20:07:30 +00:00
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2019-05-16 00:41:45 +00:00
|
|
|
SyslogIdentifier=matrix-postgres
|
2017-07-31 20:07:30 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|