HUGE REFACTORING; Implementing ldap networks, new port mappings, heal script optimizing etc.

This commit is contained in:
2025-01-30 15:04:23 +01:00
parent 61890dcf1f
commit 4c0aba2eea
79 changed files with 294 additions and 335 deletions

View File

@@ -1,7 +1,7 @@
# This template needs to be included in docker-compose.yml, which depend on a mariadb database
{% if not enable_central_database | bool %}
database:
container_name: {{docker_compose_project_name}}-database
container_name: {{application_id}}-database
logging:
driver: journald
image: mariadb

View File

@@ -2,7 +2,7 @@
{% if not enable_central_database | bool %}
database:
image: postgres:{{postgres_database_version}}-alpine
container_name: {{docker_compose_project_name}}-database
container_name: {{application_id}}-database
environment:
- POSTGRES_PASSWORD={{database_password}}
- POSTGRES_USER={{database_username}}

View File

@@ -1,7 +1,7 @@
# This template needs to be included in docker-compose.yml, which depend on redis
redis:
image: redis:alpine
container_name: {{docker_compose_project_name}}-redis
container_name: {{application_id}}-redis
restart: {{docker_restart_policy}}
logging:
driver: journald