From 31cefb7dd0a3155efbb427c89e2962f027f3f8a3 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Thu, 11 Sep 2025 19:36:03 -0700 Subject: [PATCH 1/2] Update Docker setup instructions and compose file README now provides both docker-compose and direct Docker run options. docker-compose.yml switched from local build to using the published soulsync image for easier deployment. --- README.md | 6 ++++++ docker-compose.yml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a8feeac..0b1cb04b 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,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 From 3acc3cf5dc7d8f492a1c28d47b05398142a84212 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Thu, 11 Sep 2025 20:56:20 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0b1cb04b..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)