kimai-plugin-heatmap/dev/process-compose.yaml
Christopher Mühl b20e61efdc
feat(01-01): process-compose config and setup script
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 11:12:29 +02:00

23 lines
627 B
YAML

version: "0.5"
processes:
mariadb:
command: >
mysqld --datadir=$PWD/dev/.mariadb-data
--socket=$PWD/dev/.mariadb.sock
--port=3307
--skip-grant-tables
--skip-networking=false
--bind-address=127.0.0.1
readiness_probe:
exec:
command: mysqladmin --socket=$PWD/dev/.mariadb.sock ping
initial_delay_seconds: 2
period_seconds: 1
shutdown:
command: mysqladmin --socket=$PWD/dev/.mariadb.sock shutdown
kimai:
command: symfony server:start --no-tls --dir=$PWD/dev/kimai --port=8010
depends_on:
mariadb:
condition: process_healthy