seshat/compose.yaml
Nico Athanassiadis d3c8340922 Seperated composse file
Due to tests not working as expected in other environments opted to split up the
compose file to separate files. This way we can have separation of what is loaded
by each file.

We use the include directive to add the files in the order they are needed.
2025-04-29 13:25:48 +02:00

19 lines
348 B
YAML

services:
mariadb:
image: 'mariadb:latest'
environment:
- 'MARIADB_DATABASE=seshat'
- 'MARIADB_PASSWORD=secret'
- 'MARIADB_ROOT_PASSWORD=verysecret'
- 'MARIADB_USER=myuser'
ports:
- '3306:3306'
volumes:
- mariadb_data:/var/lib/mysql
include:
- compose-oauth.yaml
volumes:
mariadb_data: