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
This commit is contained in:
openhands 2025-11-01 16:52:26 +00:00
parent 84fc7f66cb
commit beda7429c3
1 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
ports: ports:
- "8080:8080" - "8081:8081"
environment: environment:
- DB_HOST=localhost - DB_HOST=localhost
- DB_PORT=5432 - DB_PORT=5432
@ -18,9 +18,9 @@ services:
- MODBUS_ENABLED=true - MODBUS_ENABLED=true
- MODBUS_PORT=502 - MODBUS_PORT=502
- REST_API_ENABLED=true - REST_API_ENABLED=true
- REST_API_PORT=8080 - REST_API_PORT=8081
- HEALTH_MONITOR_PORT=9090 - HEALTH_MONITOR_PORT=9091
- LOG_LEVEL=INFO - LOG_LEVEL=DEBUG
volumes: volumes:
- ./static:/app/static - ./static:/app/static
- ./logs:/app/logs - ./logs:/app/logs