From beda7429c362199e2f662cc5b218888f48ea91a6 Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 1 Nov 2025 16:52:26 +0000 Subject: [PATCH] fix: Update test docker-compose to use port 8081 - Changed port mapping from 8080:8080 to 8081:8081 - Updated REST_API_PORT to 8081 in environment variables - Updated HEALTH_MONITOR_PORT to 9091 - Set LOG_LEVEL to DEBUG for test environment --- docker-compose.test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.test.yml b/docker-compose.test.yml index 64f7e82..0120dc6 100644 --- a/docker-compose.test.yml +++ b/docker-compose.test.yml @@ -6,7 +6,7 @@ services: context: . dockerfile: Dockerfile ports: - - "8080:8080" + - "8081:8081" environment: - DB_HOST=localhost - DB_PORT=5432 @@ -18,9 +18,9 @@ services: - MODBUS_ENABLED=true - MODBUS_PORT=502 - REST_API_ENABLED=true - - REST_API_PORT=8080 - - HEALTH_MONITOR_PORT=9090 - - LOG_LEVEL=INFO + - REST_API_PORT=8081 + - HEALTH_MONITOR_PORT=9091 + - LOG_LEVEL=DEBUG volumes: - ./static:/app/static - ./logs:/app/logs