mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
Added correct flush parameters for docker compose
This commit is contained in:
parent
3431796283
commit
fe76fe1e62
@ -2,6 +2,9 @@
|
|||||||
application_id: "web-app-friendica"
|
application_id: "web-app-friendica"
|
||||||
database_type: "mariadb"
|
database_type: "mariadb"
|
||||||
|
|
||||||
|
# Docker
|
||||||
|
docker_compose_flush_handlers: false
|
||||||
|
|
||||||
# Friendica Specific
|
# Friendica Specific
|
||||||
friendica_container: "friendica"
|
friendica_container: "friendica"
|
||||||
friendica_no_validation: "{{ applications | get_app_conf(application_id, 'features.oidc', True) }}" # Email validation is not neccessary if OIDC is active
|
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_dir: "{{ friendica_application_base }}/config"
|
||||||
friendica_config_file: "{{ friendica_config_dir }}/local.config.php"
|
friendica_config_file: "{{ friendica_config_dir }}/local.config.php"
|
||||||
friendica_user: "www-data"
|
friendica_user: "www-data"
|
||||||
|
|
||||||
|
@ -3,14 +3,17 @@
|
|||||||
application_id: "web-app-nextcloud" # Application identifier
|
application_id: "web-app-nextcloud" # Application identifier
|
||||||
container_port: 80
|
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
|
||||||
database_password: "{{ applications | get_app_conf(application_id, 'credentials.database_password', True)}}"
|
database_password: "{{ applications | get_app_conf(application_id, 'credentials.database_password', True)}}"
|
||||||
database_type: "mariadb" # Database flavor
|
database_type: "mariadb" # Database flavor
|
||||||
nextcloud_plugins_enabled: "{{ applications | get_app_conf(application_id, 'plugins_enabled', True) }}"
|
nextcloud_plugins_enabled: "{{ applications | get_app_conf(application_id, 'plugins_enabled', True) }}"
|
||||||
|
|
||||||
# Networking
|
# Docker
|
||||||
domain: "{{ domains | get_domain(application_id) }}" # Public domain at which Nextcloud will be accessable
|
docker_compose_flush_handlers: false # Deactivate flushing because first some routines have to be done
|
||||||
http_port: "{{ ports.localhost.http[application_id] }}" # Port at which nextcloud is reachable in the local network
|
|
||||||
|
|
||||||
nextcloud_administrator_username: "{{ applications | get_app_conf(application_id, 'users.administrator.username', True) }}"
|
nextcloud_administrator_username: "{{ applications | get_app_conf(application_id, 'users.administrator.username', True) }}"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user