Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
# DO NOT put real secrets in this file. .env (production) and .env.local
# (developer) stay gitignored.

# Container images
POSTGRES_IMAGE=postgres:16-alpine
# Container images — pinned to match production majors (Postgres 17, RabbitMQ 4,
# MinIO latest, Elasticsearch 9.x). Bumping postgres 16 -> 17 closes the parity
# gap with the production compose stack so integration tests exercise the same
# migration / dialect surface the deployed REST + Services see.
Comment on lines +18 to +20
POSTGRES_IMAGE=postgres:17-alpine
RABBITMQ_IMAGE=rabbitmq:4.1.4-management
Comment on lines +21 to 22
MINIO_IMAGE=minio/minio:RELEASE.2025-07-23T15-54-02Z
ELASTIC_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:9.1.3
Expand Down