- OUTPUT_NODE = True fuer MusicGen und AudioGen (ComfyUI API funktioniert jetzt) - generate_via_api.py: Audio direkt ueber ComfyUI REST API generieren - docker-compose.yml: hf_cache Volume fuer persistente Modelle nach Neustart - Menü Musik und alle Krieger Attacken-Sounds generiert Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
552 B
YAML
22 lines
552 B
YAML
services:
|
|
comfyui:
|
|
build: .
|
|
container_name: comfyui-audio
|
|
ports:
|
|
- "8188:8188"
|
|
volumes:
|
|
- ./models:/app/ComfyUI/models
|
|
- ./output:/app/ComfyUI/output
|
|
- ./input:/app/ComfyUI/input
|
|
- ./custom_nodes:/app/ComfyUI/custom_nodes
|
|
- ./hf_cache:/root/.cache/huggingface
|
|
environment:
|
|
- NVIDIA_VISIBLE_DEVICES=all
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
restart: unless-stopped
|