Added correct flush parameters for docker compose

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-11 10:33:48 +02:00
parent 3431796283
commit fe76fe1e62
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 9 additions and 4 deletions

View File

@ -2,6 +2,9 @@
application_id: "web-app-friendica"
database_type: "mariadb"
# Docker
docker_compose_flush_handlers: false
# Friendica Specific
friendica_container: "friendica"
friendica_no_validation: "{{ applications | get_app_conf(application_id, 'features.oidc', True) }}" # Email validation is not neccessary if OIDC is active
@ -11,4 +14,3 @@ friendica_host_ldap_config: "{{ docker_compose.directories.volumes }}ldapaut
friendica_config_dir: "{{ friendica_application_base }}/config"
friendica_config_file: "{{ friendica_config_dir }}/local.config.php"
friendica_user: "www-data"

View File

@ -3,14 +3,17 @@
application_id: "web-app-nextcloud" # Application identifier
container_port: 80
# Networking
domain: "{{ domains | get_domain(application_id) }}" # Public domain at which Nextcloud will be accessable
http_port: "{{ ports.localhost.http[application_id] }}" # Port at which nextcloud is reachable in the local network
# Database
database_password: "{{ applications | get_app_conf(application_id, 'credentials.database_password', True)}}"
database_type: "mariadb" # Database flavor
nextcloud_plugins_enabled: "{{ applications | get_app_conf(application_id, 'plugins_enabled', True) }}"
# Networking
domain: "{{ domains | get_domain(application_id) }}" # Public domain at which Nextcloud will be accessable
http_port: "{{ ports.localhost.http[application_id] }}" # Port at which nextcloud is reachable in the local network
# Docker
docker_compose_flush_handlers: false # Deactivate flushing because first some routines have to be done
nextcloud_administrator_username: "{{ applications | get_app_conf(application_id, 'users.administrator.username', True) }}"