mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 21:01:53 +01:00
11 lines
279 B
Django/Jinja
11 lines
279 B
Django/Jinja
# This template needs to be included in docker-compose.yml
|
|
networks:
|
|
{% if enable_central_database | bool and database_type is defined %}
|
|
central_{{ database_type }}:
|
|
external: true
|
|
{% endif %}
|
|
{% if ldap_network_enabled %}
|
|
central_ldap:
|
|
{% endif %}
|
|
default:
|
|
{{ "\n" }} |