mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-08 11:17:17 +02:00
- Unified Jinja2 variable spacing in tasks and templates - Introduced database_image and database_version variables in vars/database.yml - Updated mariadb.yml.j2 and postgres.yml.j2 to use {{ database_image }}:{{ database_version }} - Ensured env file paths and includes are consistent - Prepared support for versioned database images (needed for Magento deployment) Ref: https://chatgpt.com/share/68b96a9d-c100-800f-856f-cd23d1eda2ed
23 lines
831 B
Django/Jinja
23 lines
831 B
Django/Jinja
{# This template needs to be included in docker-compose.yml, which depend on a mariadb database #}
|
|
{% if not applications | get_app_conf(application_id, 'features.central_database', False) %}
|
|
|
|
{{ database_host }}:
|
|
container_name: {{ application_id | get_entity_name }}-database
|
|
logging:
|
|
driver: journald
|
|
image: {{ database_image }}:{{ database_version }}
|
|
restart: {{ DOCKER_RESTART_POLICY }}
|
|
env_file:
|
|
- {{ database_env }}
|
|
command: "--transaction-isolation=READ-COMMITTED --binlog-format=ROW"
|
|
volumes:
|
|
- database:/var/lib/mysql
|
|
healthcheck:
|
|
test: [ "CMD", "sh", "-c", "/usr/bin/mariadb --user=$$MYSQL_USER --password=$$MYSQL_PASSWORD --execute 'SHOW DATABASES;'" ]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 18
|
|
networks:
|
|
- default
|
|
{% endif %}
|
|
{{ "\n" }} |