mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-24 01:01:10 +02:00
20 lines
1.5 KiB
YAML
20 lines
1.5 KiB
YAML
# General
|
|
application_id: svc-db-postgres
|
|
|
|
# Docker
|
|
docker_compose_flush_handlers: true
|
|
|
|
## Postgres
|
|
postgres_volume: "{{ applications | get_app_conf(application_id, 'docker.volumes.data', True) }}"
|
|
postgres_name: "{{ applications | get_app_conf(application_id, 'docker.services.postgres.name', True) }}"
|
|
postgres_image: "{{ applications | get_app_conf(application_id, 'docker.services.postgres.image', True) }}"
|
|
postgres_subnet: "{{ networks.local['svc-db-postgres'].subnet }}"
|
|
postgres_network_name: "{{ applications | get_app_conf(application_id, 'docker.network', True) }}"
|
|
postgres_version: "{{ applications | get_app_conf(application_id, 'docker.services.postgres.version', True) }}"
|
|
postgres_password: "{{ applications | get_app_conf(application_id, 'credentials.postgres_password', True) }}"
|
|
postgres_port: "{{ database_port | default(ports.localhost.database[ application_id ]) }}"
|
|
postgres_init: "{{ database_username is defined and database_password is defined and database_name is defined }}"
|
|
postgres_expose_local: True # Exposes the db to localhost, almost everytime neccessary
|
|
postgres_custom_image_name: "postgres_custom"
|
|
postgres_local_host: "127.0.0.1"
|
|
postgres_pg_vector_enabled: True # Required by discourse, propably in a later step it makes sense to define this as a configuration option in config/main.yml |