Replace spaces with tabs

This commit is contained in:
Julian-Samuel Gebühr 2022-06-25 08:50:22 +02:00
parent 7baf477c16
commit 64fbc5ff87

View file

@ -17,19 +17,19 @@ ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }}
ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-maubot 2>/dev/null || true' ExecStartPre=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-maubot 2>/dev/null || true'
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-bot-maubot \ ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-bot-maubot \
--log-driver=none \ --log-driver=none \
-e UID={{ matrix_user_uid }} \ -e UID={{ matrix_user_uid }} \
-e GID={{ matrix_user_gid }} \ -e GID={{ matrix_user_gid }} \
--read-only \ --read-only \
-v {{ matrix_bot_maubot_data_path }}:/data:z \ -v {{ matrix_bot_maubot_data_path }}:/data:z \
{% for arg in matrix_bot_maubot_container_extra_arguments %} {% for arg in matrix_bot_maubot_container_extra_arguments %}
{{ arg }} \ {{ arg }} \
{% endfor %} {% endfor %}
--network={{ matrix_docker_network }} \ --network={{ matrix_docker_network }} \
{% if matrix_bot_maubot_expose_management_interface|bool %} {% if matrix_bot_maubot_expose_management_interface|bool %}
-p {{ matrix_bot_maubot_port }}:29316 \ -p {{ matrix_bot_maubot_port }}:29316 \
{% endif %} {% endif %}
{{ matrix_bot_maubot_docker_image }} {{ matrix_bot_maubot_docker_image }}
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-bot-maubot 2>/dev/null || true' ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} kill matrix-bot-maubot 2>/dev/null || true'
ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-maubot 2>/dev/null || true' ExecStop=-{{ matrix_host_command_sh }} -c '{{ matrix_host_command_docker }} rm matrix-bot-maubot 2>/dev/null || true'