- Dockerfile (NVIDIA RTX 3070, CUDA 12.4, PyTorch 2.3+) - Dockerfile.amd (AMD Radeon 9070, ROCm 6.2) - docker-compose.yml (NVIDIA) / docker-compose.amd.yml (AMD) - ComfyUI-Manager fuer einfache Node-Installation - AudioCraft (MusicGen, AudioGen) fuer Game Audio Generierung Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
479 B
YAML
21 lines
479 B
YAML
services:
|
|
comfyui:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.amd
|
|
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
|
|
devices:
|
|
- /dev/kfd
|
|
- /dev/dri
|
|
group_add:
|
|
- video
|
|
environment:
|
|
- HSA_OVERRIDE_GFX_VERSION=11.0.0
|
|
restart: unless-stopped
|