Skip to content

Commit 8d1721c

Browse files
hyperpolymathclaude
andcommitted
fix(container): correct port references — 9000/9999→7700 and add SSE port 7703
manifest.toml: APP_PORT and listen_tcp were using stale port 9000 from an earlier design; corrected to 7700 (REST) with all four ports (7700-7703). Containerfile run-example comments were missing SSE port 7703. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 17abf86 commit 8d1721c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

container/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
# podman build -t boj-server:latest -f container/Containerfile .
99
#
1010
# Run:
11-
# podman run -p 7700:7700 -p 7701:7701 -p 7702:7702 boj-server:latest
11+
# podman run -p 7700:7700 -p 7701:7701 -p 7702:7702 -p 7703:7703 boj-server:latest
1212
#
1313
# Run with persistent volume:
14-
# podman run -p 7700:7700 -p 7701:7701 -p 7702:7702 \
14+
# podman run -p 7700:7700 -p 7701:7701 -p 7702:7702 -p 7703:7703 \
1515
# -v boj-server-data:/data boj-server:latest
1616

1717
# ============================================================================

container/manifest.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ system = "podman"
3232

3333
[build.environment]
3434
APP_HOST = "[::]"
35-
APP_PORT = "9000"
35+
APP_PORT = "7700"
3636

3737
[outputs]
3838
primary = "boj-server"
@@ -54,7 +54,7 @@ drop = ["ALL"]
5454
add = ["NET_BIND_SERVICE"]
5555

5656
[security.network]
57-
listen_tcp = [9000]
57+
listen_tcp = [7700, 7701, 7702, 7703]
5858

5959
[security.filesystem]
6060
read = ["/app/", "/data/"]

0 commit comments

Comments
 (0)