Removed network suffix

This commit is contained in:
2024-01-05 20:22:34 +01:00
parent cda6f1a8dc
commit f8644515fa
9 changed files with 18 additions and 18 deletions

View File

@@ -1,8 +1,8 @@
# This template needs to be included in docker-compose.yml
networks:
{% if enable_central_database | bool %}
central_{{ database_type }}_network:
central_{{ database_type }}:
external: true
{% endif %}
default_network:
default:
{{ "\n" }}

View File

@@ -1,7 +1,7 @@
# This template needs to be included in docker-compose.yml containers
networks:
default_network:
default:
{% if enable_central_database | bool %}
central_{{ database_type }}_network:
central_{{ database_type }}:
{% endif %}
{{ "\n" }}

View File

@@ -21,6 +21,6 @@
timeout: 1s
retries: 5
networks:
- default_network
- default
{% endif %}
{{ "\n" }}

View File

@@ -19,6 +19,6 @@
source: database
target: /var/lib/postgresql/data
networks:
- default_network
- default
{% endif %}
{{ "\n" }}

View File

@@ -13,5 +13,5 @@
timeout: 3s
retries: 30
networks:
- default_network
- default
{{ "\n" }}