From 8da71f3781bffc14cfdc46edee5f3bcf8eb35539 Mon Sep 17 00:00:00 2001 From: Parley Hatch Date: Sun, 31 May 2026 18:23:35 -0600 Subject: [PATCH] Use host port 8090 (8080 was taken by another local container) Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 2 +- docker-compose.yml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad0eb5f..91cb1ea 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ python3 -m http.server 8000 **Docker / OrbStack** (nginx, production-style headers) ```bash docker compose up -d --build -# → http://localhost:8080 +# → http://localhost:8090 docker compose down ``` diff --git a/docker-compose.yml b/docker-compose.yml index b571dde..65a23c0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,12 +1,13 @@ # Run the game locally with OrbStack's Docker engine: # docker compose up -d --build -# open http://localhost:8080 +# open http://localhost:8090 # docker compose down +# (Host port 8090 chosen to avoid colliding with other local containers.) services: tictactoe: build: . image: tictactoe:latest container_name: tictactoe ports: - - "8080:80" + - "8090:80" restart: unless-stopped