From a8818225f786a5984e43be9cfb92dea36e10d06f Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 2 Aug 2026 23:42:07 +0000 Subject: [PATCH] Change host port from 8080 to 8888 Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01PbwKCCj1vwAoqgRYDoqgeL --- DEPLOYMENT.md | 10 +++++----- docker-compose.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md index 5ec3010..ae69e4b 100644 --- a/DEPLOYMENT.md +++ b/DEPLOYMENT.md @@ -10,13 +10,13 @@ docker compose up -d --build ``` This builds the image from `Dockerfile` (nginx serving `index.html`) and -exposes it on `http://:8080`. Check it directly first: +exposes it on `http://:8888`. Check it directly first: ```bash -curl http://localhost:8080/healthz # -> ok +curl http://localhost:8888/healthz # -> ok ``` -Change the `8080:80` mapping in `docker-compose.yml` if that port is taken. +Change the `8888:80` mapping in `docker-compose.yml` if that port is taken. ## 2. Point Caddy at it @@ -29,7 +29,7 @@ Add a block like this to your existing `Caddyfile` (replace ```caddyfile drums.example.com { - reverse_proxy localhost:8080 + reverse_proxy localhost:8888 } ``` @@ -38,7 +38,7 @@ host's address or internal hostname instead of `localhost`: ```caddyfile drums.example.com { - reverse_proxy 10.0.0.5:8080 + reverse_proxy 10.0.0.5:8888 } ``` diff --git a/docker-compose.yml b/docker-compose.yml index 6d38fc2..19fa10e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,4 +4,4 @@ services: container_name: drum-rhythm-game restart: unless-stopped ports: - - "8080:80" + - "8888:80"