Fix NeDB to Postgres importing task for matrix-bridge-appservice-irc

Postgres is not in `matrix_docker_network` anymore, so what we had
before could not possibly work anymore.
This commit is contained in:
Slavi Pantaleev
2024-01-13 17:10:02 +02:00
parent e782e91fbd
commit 6b73073012
3 changed files with 8 additions and 1 deletions

View File

@ -46,7 +46,9 @@
--rm
--user={{ matrix_user_uid }}:{{ matrix_user_gid }}
--cap-drop=ALL
--network={{ matrix_docker_network }}
{% if matrix_appservice_irc_database_container_network %}
--network={{ matrix_appservice_irc_database_container_network }}
{% endif %}
--mount type=bind,src={{ matrix_appservice_irc_data_path }},dst=/data
--entrypoint=/bin/sh
{{ matrix_appservice_irc_docker_image }}