fix: align MAX_PORT fallback to 40009 in docker-compose.yml
The environment fallback was 40010 (11 ports) while ports comments and all other example files use 40009 (10 ports). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Yechan Kim committed
Apr 3, 2026 at 16:06 UTC
e5502b593cb9d5604e9f1888725bb6501388b4cc
1 file changed
+1
-1
docker-compose.yml
+1
-1
@@ -29,7 +29,7 @@ services:
29
30
# Shared lease port range.
31
MIN_PORT: ${MIN_PORT:-40000}
32
- MAX_PORT: ${MAX_PORT:-40010}
32
+ MAX_PORT: ${MAX_PORT:-40009}
33
UDP_ENABLED: ${UDP_ENABLED:-false}
34
TCP_ENABLED: ${TCP_ENABLED:-false}
35