fixing clients
new frontend
This commit is contained in:
@@ -22,7 +22,13 @@ services:
|
||||
VERSION: ${DOCKER_APP_VERSION:-1.0.0}
|
||||
# Service-specific arguments (from docker/build-args/services.env)
|
||||
SPRING_PROFILES_ACTIVE: ${DOCKER_SPRING_PROFILES_DOCKER:-docker}
|
||||
# Enable BuildKit for better caching and performance
|
||||
platforms:
|
||||
- linux/amd64
|
||||
container_name: meldestelle-ping-service
|
||||
volumes:
|
||||
# Mount Gradle cache for better build performance
|
||||
- ping-service-gradle-cache:/home/gradle/.gradle
|
||||
environment:
|
||||
SPRING_PROFILES_ACTIVE: ${SPRING_PROFILES_ACTIVE:-docker}
|
||||
SERVER_PORT: ${PING_SERVICE_PORT:-8082}
|
||||
@@ -42,13 +48,13 @@ services:
|
||||
- "${PING_SERVICE_PORT:-8082}:8082"
|
||||
networks:
|
||||
- meldestelle-network
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
redis:
|
||||
condition: service_healthy
|
||||
consul:
|
||||
condition: service_healthy
|
||||
# depends_on:
|
||||
# postgres:
|
||||
# condition: service_healthy
|
||||
# redis:
|
||||
# condition: service_healthy
|
||||
# consul:
|
||||
# condition: service_healthy
|
||||
healthcheck:
|
||||
test: [ "CMD", "curl", "--fail", "http://localhost:8082/actuator/health/readiness" ]
|
||||
interval: 15s
|
||||
|
||||
Reference in New Issue
Block a user