docs: clarify API_PORT usage in .env.example

Added detailed comments explaining that container always uses port 8080
internally and API_PORT only controls host port mapping.
This commit is contained in:
2025-10-31 12:42:41 -04:00
parent 77da47a40d
commit eac2e781f7

View File

@@ -25,7 +25,9 @@ TRADE_HTTP_PORT=8002
GETPRICE_HTTP_PORT=8003 GETPRICE_HTTP_PORT=8003
# API Server Port (exposed on host machine for REST API) # API Server Port (exposed on host machine for REST API)
# Container always uses 8080 internally # Container ALWAYS uses port 8080 internally (hardcoded in entrypoint-api.sh)
# This variable ONLY controls the host port mapping (host:8080 -> container:8080)
# Change this if port 8080 is already in use on your host machine
# Used for Windmill integration and external API access # Used for Windmill integration and external API access
API_PORT=8080 API_PORT=8080