From 64b670f5e3174b637606674a1d5ec7c6838bc685 Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Sun, 8 Mar 2026 15:17:56 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20Update=20ports?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- README.md | 2 +- docker-compose.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7252eb9..427b8d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY app ./app -EXPOSE 8080 +EXPOSE 1337 -CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8080"] +CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "1337"] diff --git a/README.md b/README.md index a9c8e6e..83e3fa2 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Results are persisted in SQLite for change tracking (new/updated/missing devices docker compose up --build ``` -Then open: `http://localhost:8080` +Then open: `http://localhost:1337` Database file is stored at `./data/nettrak.db` via a bind mount. diff --git a/docker-compose.yml b/docker-compose.yml index dc5122f..40633b3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: network_mode: host ports: - - "8080:8080" + - "1337:1337" volumes: - ./data:/data