From 31cefb7dd0a3155efbb427c89e2962f027f3f8a3 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Thu, 11 Sep 2025 19:36:03 -0700 Subject: [PATCH] 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