Removed network formatation bug

This commit is contained in:
Kevin Veen-Birkenbach 2024-01-04 09:47:14 +01:00
parent d4d18d4d32
commit be2848b01f
2 changed files with 3 additions and 4 deletions

View File

@ -149,13 +149,12 @@ services:
- "webdav_data:/data" - "webdav_data:/data"
logging: logging:
driver: journald driver: journald
networks:
- radicale
depends_on: depends_on:
- resolver - resolver
dns: dns:
- 192.168.203.254 - 192.168.203.254
{% include 'templates/docker-container-networks.yml.j2' %} {% include 'templates/docker-container-networks.yml.j2' %}
radicale:
fetchmail: fetchmail:
image: ghcr.io/mailu/fetchmail:{{version_mailu}} image: ghcr.io/mailu/fetchmail:{{version_mailu}}

View File

@ -1,6 +1,6 @@
# This template needs to be included in docker-compose.yml containers # This template needs to be included in docker-compose.yml containers
networks: networks:
- {{docker_compose_project_name}}_network {{docker_compose_project_name}}_network:
{% if enable_central_database | bool %} {% if enable_central_database | bool %}
- central_{{ database_type }}_network central_{{ database_type }}_network:
{% endif %} {% endif %}