Merge branch 'main' of https://github.com/Nezreka/SoulSync
This commit is contained in:
commit
54f1f600fc
2 changed files with 8 additions and 1 deletions
|
|
@ -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
|
- **Artist watchlist** monitors for new releases and adds missing tracks
|
||||||
- **Background automation** retries failed downloads every hour
|
- **Background automation** retries failed downloads every hour
|
||||||
|
|
||||||
|
|
||||||
## 🚀 Three Ways to Run
|
## 🚀 Three Ways to Run
|
||||||
|
|
||||||
### 1. Desktop GUI (Original)
|
### 1. Desktop GUI (Original)
|
||||||
|
|
@ -41,7 +42,13 @@ python web_server.py
|
||||||
### 3. Docker (New!)
|
### 3. Docker (New!)
|
||||||
Containerized web UI with persistent database.
|
Containerized web UI with persistent database.
|
||||||
```bash
|
```bash
|
||||||
|
# Option 1: Use docker-compose (recommended)
|
||||||
|
curl -O https://raw.githubusercontent.com/Nezreka/SoulSync/main/docker-compose.yml
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
|
|
||||||
|
# Option 2: Run directly
|
||||||
|
docker run -d -p 8008:8008 boulderbadgedad/soulsync:latest
|
||||||
|
|
||||||
# Open http://localhost:8008
|
# Open http://localhost:8008
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
soulsync:
|
soulsync:
|
||||||
build: .
|
image: boulderbadgedad/soulsync:latest
|
||||||
container_name: soulsync-webui
|
container_name: soulsync-webui
|
||||||
ports:
|
ports:
|
||||||
- "8008:8008" # Main web app
|
- "8008:8008" # Main web app
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue