mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-24 17:21:09 +02:00
18 lines
830 B
YAML
18 lines
830 B
YAML
application_id: "web-app-bigbluebutton"
|
|
|
|
# Database configuration
|
|
database_type: "postgres"
|
|
database_password: "{{ applications | get_app_conf(application_id, 'credentials.postgresql_secret') }}"
|
|
|
|
# Proxy
|
|
domain: "{{ domains | get_domain(application_id) }}"
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
# Docker
|
|
docker_compose_skipp_file_creation: true # Handled in this role
|
|
docker_repository_address: "https://github.com/bigbluebutton/docker.git"
|
|
docker_pull_git_repository: true
|
|
docker_compose_flush_handlers: false
|
|
|
|
# Setup
|
|
bbb_setup: "{{ applications | get_app_conf(application_id, 'setup') }}" |