Skip to content

Commit 826a1e2

Browse files
committed
docs(readme): fix Docker port mapping to container's 8080
1 parent 02151f5 commit 826a1e2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ curl -LJO "https://github.com/DatanoiseTV/tinyice/releases/latest/download/tinyi
9595
chmod +x tinyice-* && mv tinyice-* tinyice && ./tinyice
9696

9797
# Or Docker — multi-arch images on GHCR (linux/amd64, linux/arm64)
98-
docker run --rm -p 8000:8000 -v tinyice-data:/data ghcr.io/datanoisetv/tinyice:latest
98+
# The image listens on 8080 and reads /data/config.json; reach it on :8000
99+
docker run --rm -p 8000:8080 -v tinyice-data:/data ghcr.io/datanoisetv/tinyice:latest
99100

100101
# Or from source — Go 1.25+, Node 20+
101102
git clone https://github.com/DatanoiseTV/tinyice.git && cd tinyice && make build

0 commit comments

Comments
 (0)