1
0
Fork 0

add variable forgejo_container_additional_networks_custom

by combining it with forgejo_container_additional_networks_auto to the normal forgejo_container_additional_networks_custom
This commit is contained in:
Bergrübe 2024-04-22 20:02:25 +02:00 committed by GitHub
parent 0c6e050f55
commit 1738f746c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -132,7 +132,10 @@ forgejo_container_network: "{{ forgejo_identifier }}"
# A list of additional container networks that the container would be connected to. # A list of additional container networks that the container would be connected to.
# The playbook does not create these networks, so make sure they already exist. # The playbook does not create these networks, so make sure they already exist.
forgejo_container_additional_networks: [] # Use this to expose this container to a reverse proxy, which runs in a different container network.
forgejo_container_additional_networks: "{{ forgejo_container_additional_networks_auto + forgejo_container_additional_networks_custom }}"
forgejo_container_additional_networks_auto: []
forgejo_container_additional_networks_custom: []
# Additional environment variables. # Additional environment variables.
forgejo_environment_variables_additional_variables: '' forgejo_environment_variables_additional_variables: ''