feat: add frontend dev container to docker-compose #7
18
docker-compose.ci.yml
Normal file
18
docker-compose.ci.yml
Normal 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:
|
||||
Reference in New Issue
Block a user