40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# ===================================================================
|
|
# Infrastructure Docker Build Arguments - dockerfiles/infrastructure/*
|
|
# Source: docker/versions.toml [categories.infrastructure]
|
|
# Last updated: 2025-09-13 18:33:34 UTC
|
|
# ===================================================================
|
|
|
|
# --- Include Global Arguments ---
|
|
# Source global.env for GRADLE_VERSION, JAVA_VERSION, BUILD_DATE, VERSION
|
|
|
|
# --- Infrastructure Services Configuration ---
|
|
SPRING_PROFILES_ACTIVE=default
|
|
DOCKER_SPRING_PROFILES_DEFAULT
|
|
|
|
# --- Infrastructure Service Ports (matches gradle.properties) ---
|
|
GATEWAY_PORT=8081
|
|
AUTH_SERVER_PORT=8087
|
|
MONITORING_SERVER_PORT=8088
|
|
|
|
# --- API Gateway Specific ---
|
|
GATEWAY_SERVICE_PATH=infrastructure/gateway
|
|
GATEWAY_SERVICE_NAME=api-gateway
|
|
|
|
# --- Auth Server Specific ---
|
|
AUTH_SERVER_PATH=infrastructure/auth/auth-server
|
|
AUTH_SERVER_SERVICE_NAME=auth-server
|
|
|
|
# --- Monitoring Server Specific ---
|
|
MONITORING_SERVER_PATH=infrastructure/monitoring/monitoring-server
|
|
MONITORING_SERVER_SERVICE_NAME=monitoring-server
|
|
|
|
# --- Infrastructure Dependencies ---
|
|
CONSUL_ENABLED=true
|
|
CONSUL_HOST=consul
|
|
CONSUL_PORT=8500
|
|
|
|
# --- Database Configuration for Infrastructure Services ---
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_NAME=meldestelle
|