Added funkwhale draft and set variablesfor db ports

This commit is contained in:
2025-01-28 16:54:39 +01:00
parent 6f851973fa
commit 3244b7d62e
19 changed files with 62 additions and 32 deletions

View File

@@ -1,4 +1,5 @@
database_instance: "{{ 'central-' + database_type if enable_central_database | bool else docker_compose_project_name }}"
database_host: "{{ 'central-' + database_type if enable_central_database | bool else 'database' }}"
database_name: "{{ docker_compose_project_name }}"
database_username: "{{ docker_compose_project_name }}"
database_username: "{{ docker_compose_project_name }}"
database_port: "{{ 3306 if database_type == 'mariadb' else 5432 }}"