22 lines
539 B
Bash
22 lines
539 B
Bash
# Local-only defaults for Docker Compose development.
|
|
# These values are intentionally non-production and must not be reused as real credentials.
|
|
COMPOSE_PROJECT_NAME=ai-content-pipeline
|
|
|
|
FRONTEND_PORT=3000
|
|
BACKEND_PORT=8000
|
|
RUNNER_PORT=8010
|
|
|
|
POSTGRES_USER=pipeline
|
|
POSTGRES_PASSWORD=pipeline_local
|
|
POSTGRES_DB=pipeline
|
|
POSTGRES_PORT=5432
|
|
|
|
REDIS_PORT=6379
|
|
|
|
MINIO_ROOT_USER=minio_local
|
|
MINIO_ROOT_PASSWORD=minio_local_password
|
|
MINIO_API_PORT=9000
|
|
MINIO_CONSOLE_PORT=9001
|
|
OBJECT_STORAGE_BUCKET=pipeline-local
|
|
OBJECT_STORAGE_REGION=us-east-1
|