🐞 fix: Update ports

This commit is contained in:
Keith Solomon
2026-03-08 15:17:56 -05:00
parent 823a9b0d7f
commit 64b670f5e3
3 changed files with 4 additions and 4 deletions

View File

@@ -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"]

View File

@@ -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.

View File

@@ -12,7 +12,7 @@ services:
network_mode: host
ports:
- "8080:8080"
- "1337:1337"
volumes:
- ./data:/data