Solved condition and tab bugs

This commit is contained in:
2025-07-07 21:44:33 +02:00
parent f254c9711d
commit a100c9e63d
2 changed files with 7 additions and 7 deletions

View File

@@ -1,11 +1,11 @@
{# Base template for all docker-compose.yml.j2 #}
services:
{# Load Database #}
{% if applications[application_id].docker.database.enabled | default(false) | bool %}
{% if applications[application_id].docker.services.database.enabled | default(false) | bool %}
{% include 'roles/docker-central-database/templates/services/main.yml.j2' %}
{% endif %}
{# Load Redis #}
{% if applications[application_id].docker.redis.enabled | default(false) | bool %}
{% if applications[application_id].docker.services.redis.enabled | default(false) | bool %}
{% include 'roles/docker-redis/templates/service.yml.j2' %}
{% endif %}
{# Load OAuth2 Proxy #}