mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
21 lines
606 B
YAML
21 lines
606 B
YAML
version: "3.9"
|
|
services:
|
|
mariadb:
|
|
image: mariadb:11.4
|
|
container_name: test-mariadb
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: rootpw
|
|
MARIADB_DATABASE: group_project
|
|
MARIADB_USER: appuser
|
|
MARIADB_PASSWORD: apppass
|
|
ports:
|
|
- "3307:3306" # host:container (use 3307 on host to avoid conflicts)
|
|
healthcheck:
|
|
test: ["CMD", "mariadb-admin", "ping", "-h", "127.0.0.1", "-u", "root", "-prootpw", "--silent"]
|
|
interval: 5s
|
|
timeout: 2s
|
|
retries: 20
|
|
# Truly ephemeral, fast storage (removed when container stops)
|
|
tmpfs:
|
|
- /var/lib/mysql
|