Add multiple container networks support to Buscarron

This commit is contained in:
Slavi Pantaleev
2023-02-25 15:02:30 +02:00
parent 6c2d397853
commit 0220c851e8
4 changed files with 26 additions and 2 deletions

View File

@ -20,6 +20,14 @@ matrix_bot_buscarron_config_path: "{{ matrix_bot_buscarron_base_path }}/config"
matrix_bot_buscarron_data_path: "{{ matrix_bot_buscarron_base_path }}/data"
matrix_bot_buscarron_data_store_path: "{{ matrix_bot_buscarron_data_path }}/store"
# The base container network. It will be auto-created by this role if it doesn't exist already.
matrix_bot_container_network: matrix-bot-buscarron
# A list of additional container networks that the container would be connected to.
# The role does not create these networks, so make sure they already exist.
# Use this to expose this container to another reverse proxy, which runs in a different container network.
matrix_bot_container_additional_networks: []
# A list of extra arguments to pass to the container
matrix_bot_buscarron_container_extra_arguments: []