feat: add frontend dev container to docker-compose #7

Merged
marcel merged 10 commits from feat/frontend-dockerfile into main 2026-03-19 12:07:20 +01:00
Showing only changes of commit 9f3f022ec0 - Show all commits

18
docker-compose.ci.yml Normal file
View File

@@ -0,0 +1,18 @@
# CI override — replaces host bind mounts with ephemeral named volumes.
# Host port bindings are handled via PORT_DB/PORT_MINIO_API env vars in ci.yml
# (set to non-standard ports to avoid conflicts with system services on the runner).
#
# Usage:
# docker compose -f docker-compose.yml -f docker-compose.ci.yml up -d db minio create-buckets
services:
db:
volumes:
- ci_postgres_data:/var/lib/postgresql/data
minio:
volumes:
- ci_minio_data:/data
volumes:
ci_postgres_data:
ci_minio_data: