Merge pull request #103 from smithbh/feature/makefile-local-lan-taskrunner

Adds makefile-based taskrunner with lan or local-only access options
This commit is contained in:
Shadowbroker
2026-03-24 18:02:46 -06:00
committed by GitHub
2 changed files with 57 additions and 2 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ services:
dockerfile: ./backend/Dockerfile
container_name: shadowbroker-backend
ports:
- "8000:8000"
- "${BIND:-127.0.0.1}:8000:8000"
environment:
- AIS_API_KEY=${AIS_API_KEY}
- OPENSKY_CLIENT_ID=${OPENSKY_CLIENT_ID}
@@ -33,7 +33,7 @@ services:
context: ./frontend
container_name: shadowbroker-frontend
ports:
- "3000:3000"
- "${BIND:-127.0.0.1}:3000:3000"
environment:
# Points the Next.js server-side proxy at the backend container via Docker networking.
# Change this if your backend runs on a different host or port.