2017-07-31 20:07:30 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix Postgres server
|
|
|
|
After=docker.service
|
|
|
|
Requires=docker.service
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
ExecStartPre=-/usr/bin/docker stop matrix-postgres
|
|
|
|
ExecStartPre=-/usr/bin/docker rm matrix-postgres
|
|
|
|
ExecStart=/usr/bin/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 }} \
|
2018-08-08 07:47:03 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-01-12 15:53:00 +00:00
|
|
|
--env-file={{ matrix_postgres_base_path }}/env-postgres-server \
|
2017-07-31 20:07:30 +00:00
|
|
|
-v {{ matrix_postgres_data_path }}:/var/lib/postgresql/data \
|
|
|
|
-v /etc/passwd:/etc/passwd:ro \
|
2018-11-01 06:46:47 +00:00
|
|
|
{{ matrix_postgres_docker_image_to_use }}
|
2017-07-31 20:07:30 +00:00
|
|
|
ExecStop=-/usr/bin/docker stop matrix-postgres
|
|
|
|
ExecStop=-/usr/bin/docker rm matrix-postgres
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|