diff --git a/README.md b/README.md index 0a8feeac..ac3631c1 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/docker-compose.yml b/docker-compose.yml index fd4e1d13..240e4efe 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.8' services: soulsync: - build: . + image: boulderbadgedad/soulsync:latest container_name: soulsync-webui ports: - "8008:8008" # Main web app