pull/28/head
Broque Thomas 8 months ago
commit 54f1f600fc

@ -20,6 +20,7 @@ Bridge the gap between streaming services and your local music library. Automati
- **Artist watchlist** monitors for new releases and adds missing tracks
- **Background automation** retries failed downloads every hour
## 🚀 Three Ways to Run
### 1. Desktop GUI (Original)
@ -41,7 +42,13 @@ python web_server.py
### 3. Docker (New!)
Containerized web UI with persistent database.
```bash
# Option 1: Use docker-compose (recommended)
curl -O https://raw.githubusercontent.com/Nezreka/SoulSync/main/docker-compose.yml
docker-compose up -d
# Option 2: Run directly
docker run -d -p 8008:8008 boulderbadgedad/soulsync:latest
# Open http://localhost:8008
```

@ -2,7 +2,7 @@ version: '3.8'
services:
soulsync:
build: .
image: boulderbadgedad/soulsync:latest
container_name: soulsync-webui
ports:
- "8008:8008" # Main web app

Loading…
Cancel
Save