From 449e663f507a046e8bff8e5cb20a136a587ad100 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 16:41:35 +0000 Subject: [PATCH 1/2] Initial plan From c2281ad49218801d7927740e83e7e6997b2e27dd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 23 Dec 2025 16:43:43 +0000 Subject: [PATCH 2/2] Update Docker image name from tap-api to windwatts-api Co-authored-by: shawnpetros <9226624+shawnpetros@users.noreply.github.com> --- docs/06-deployment.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/06-deployment.md b/docs/06-deployment.md index c025b43..76c7fcf 100644 --- a/docs/06-deployment.md +++ b/docs/06-deployment.md @@ -7,13 +7,13 @@ This assumes Docker is available on the host. ### Build ```shell -docker build -t tap-api:latest . +docker build -t windwatts-api:latest . ``` ### Run (Production Mode) ```shell -docker run -p 8080:80 -it tap-api:latest uvicorn app.main:app --host 0.0.0.0 --port 80 --workers 4 +docker run -p 8080:80 -it windwatts-api:latest uvicorn app.main:app --host 0.0.0.0 --port 80 --workers 4 ``` Inside the container, the FastAPI app runs on port `80`. On the host, it's mapped to `8080`. @@ -23,7 +23,7 @@ Inside the container, the FastAPI app runs on port `80`. On the host, it's mappe To explore the container: ```shell -docker run -p 8080:80 -it tap-api:latest /bin/bash +docker run -p 8080:80 -it windwatts-api:latest /bin/bash ``` ## Production Configuration