jaegertracing/jaeger:2 is not a valid Docker Hub tag — pin to 2.6.0. Remap PG to 5433 and Valkey to 6380 to avoid conflicts with existing host containers (sage-postgres, mosaic-valkey on 5432/6379). Ports are env-configurable via PG_HOST_PORT / VALKEY_HOST_PORT. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
457 B
Plaintext
17 lines
457 B
Plaintext
# Database (port 5433 avoids conflict with host PostgreSQL)
|
|
DATABASE_URL=postgresql://mosaic:mosaic@localhost:5433/mosaic
|
|
|
|
# Valkey (Redis-compatible, port 6380 avoids conflict with host Redis/Valkey)
|
|
VALKEY_URL=redis://localhost:6380
|
|
|
|
# Docker Compose host port overrides (optional)
|
|
# PG_HOST_PORT=5433
|
|
# VALKEY_HOST_PORT=6380
|
|
|
|
# OpenTelemetry
|
|
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
|
|
OTEL_SERVICE_NAME=mosaic-gateway
|
|
|
|
# Gateway
|
|
GATEWAY_PORT=4000
|