Remove Dendrite file logging

We refrain from logging to files for all components,
because we rely on systemd-journald anyway.
This commit is contained in:
Slavi Pantaleev
2021-10-27 14:14:21 +03:00
parent 953a9ac718
commit ccd3dc7a57
5 changed files with 10 additions and 27 deletions

View File

@ -37,7 +37,6 @@ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-dendrite \
{% endif %}
--mount type=bind,src={{ matrix_dendrite_config_dir_path }},dst=/data,ro \
--mount type=bind,src={{ matrix_dendrite_storage_path }},dst=/matrix-media-store-parent,bind-propagation=slave \
--mount type=bind,src={{ matrix_dendrite_log_path }},dst=/var/log/dendrite,bind-propagation=slave \
{% for volume in matrix_dendrite_container_additional_volumes %}
-v {{ volume.src }}:{{ volume.dst }}:{{ volume.options }} \
{% endfor %}