Document local-fixes rebase workflow

This commit is contained in:
James Ward
2026-01-19 17:34:33 -08:00
committed by Smittix
parent 6e97f95ced
commit 247cc279cb
+21 -11
View File
@@ -51,17 +51,27 @@ cd intercept
sudo -E venv/bin/python intercept.py sudo -E venv/bin/python intercept.py
``` ```
### Docker (Alternative) ### Docker (Alternative)
```bash ```bash
git clone https://github.com/smittix/intercept.git git clone https://github.com/smittix/intercept.git
cd intercept cd intercept
docker compose up -d docker compose up -d
``` ```
> **Note:** Docker requires privileged mode for USB SDR access. See `docker-compose.yml` for configuration options. > **Note:** Docker requires privileged mode for USB SDR access. See `docker-compose.yml` for configuration options.
### Open the Interface ### Local Fixes Branch (Optional)
If you keep local changes (e.g., custom health checks), use a separate branch and rebase it after updates:
```bash
git fetch origin
git checkout local-fixes
git rebase origin/main
```
### Open the Interface
After starting, open **http://localhost:5050** in your browser. The username and password is <b>admin</b>:<b>admin</b> After starting, open **http://localhost:5050** in your browser. The username and password is <b>admin</b>:<b>admin</b>