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.
This commit is contained in:
parent
315f1227f0
commit
31cefb7dd0
2 changed files with 7 additions and 1 deletions
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -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…
Reference in a new issue