- Add extra positive/negative prompt textareas to all 9 detail pages with session persistence - Add Endless generation button to all detail pages (continuous preview generation until stopped) - Default character selector to "Random Character" on all secondary detail pages - Fix queue clear endpoint (remove spurious auth check) - Refactor app.py into routes/ and services/ modules - Update CLAUDE.md with new architecture documentation - Various data file updates and cleanup Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
services:
|
|
danbooru-mcp:
|
|
build: https://git.liveaodh.com/aodhan/danbooru-mcp.git
|
|
image: danbooru-mcp:latest
|
|
stdin_open: true
|
|
restart: unless-stopped
|
|
|
|
character-mcp:
|
|
build: https://git.liveaodh.com/aodhan/character-mcp.git
|
|
image: character-mcp:latest
|
|
stdin_open: true
|
|
restart: unless-stopped
|
|
volumes:
|
|
# Persistent cache for character data
|
|
- character-cache:/root/.local/share/character-mcp
|
|
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "5782:5000"
|
|
environment:
|
|
# ComfyUI runs on the Docker host
|
|
COMFYUI_URL: http://10.0.0.200:8188 # Compose manages danbooru-mcp — skip the app's auto-start logic
|
|
SKIP_MCP_AUTOSTART: "true"
|
|
# Enable debug logging
|
|
FLASK_DEBUG: "1"
|
|
LOG_LEVEL: "DEBUG"
|
|
volumes:
|
|
# Persistent data
|
|
- ./data:/app/data
|
|
- ./static/uploads:/app/static/uploads
|
|
- ./instance:/app/instance
|
|
- ./flask_session:/app/flask_session
|
|
# Model files
|
|
- /Volumes/ImageModels:/ImageModels
|
|
# Docker socket so the app can run danbooru-mcp tool containers
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
extra_hosts:
|
|
# Resolve host.docker.internal on Linux hosts
|
|
- "host.docker.internal:host-gateway"
|
|
depends_on:
|
|
- danbooru-mcp
|
|
- character-mcp
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
character-cache:
|