mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Delay Dendrite startup so that matrix-postgres.service can start
This commit is contained in:
parent
9f6e8f5eaf
commit
b297e8ee2b
@ -16,6 +16,12 @@ Environment="HOME={{ matrix_systemd_unit_home_path }}"
|
|||||||
ExecStartPre=-{{ matrix_host_command_docker }} kill matrix-dendrite
|
ExecStartPre=-{{ matrix_host_command_docker }} kill matrix-dendrite
|
||||||
ExecStartPre=-{{ matrix_host_command_docker }} rm matrix-dendrite
|
ExecStartPre=-{{ matrix_host_command_docker }} rm matrix-dendrite
|
||||||
|
|
||||||
|
{% if 'matrix-postgres.service' in matrix_dendrite_systemd_required_services_list %}
|
||||||
|
# Dendrite is too quick to start in relation to its matrix-postgres dependency.
|
||||||
|
# Delay Dendrite startup to avoid failing with: "failed to connect to accounts db" ("pq: the database system is starting up").
|
||||||
|
ExecStartPre={{ matrix_host_command_sleep }} 5
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-dendrite \
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-dendrite \
|
||||||
--log-driver=none \
|
--log-driver=none \
|
||||||
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
||||||
|
Loading…
Reference in New Issue
Block a user