22 lines
704 B
Plaintext
Raw Normal View History

# This template needs to be included in docker-compose.yml, which depend on a mariadb database
2024-01-03 12:07:19 +01:00
{% if not enable_central_database | bool %}
database:
container_name: {{application_id}}-database
logging:
driver: journald
image: mariadb
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: 3s
timeout: 1s
retries: 5
networks:
2024-01-05 20:22:34 +01:00
- default
{% endif %}
2024-01-04 11:36:55 +01:00
{{ "\n" }}