diff --git a/compose_comfyui.yaml b/compose_comfyui.yaml new file mode 100644 index 0000000..649a73f --- /dev/null +++ b/compose_comfyui.yaml @@ -0,0 +1,17 @@ +services: + comfyui: + image: jimlee2048/comfyui-docker:latest + container_name: comfyui-docker + ports: + - "8188:8188" + volumes: + - /opt/ComfyUI/models:/workspace/ComfyUI/models + - /opt/ComfyUI/output:/workspace/ComfyUI/output + - /opt/ComfyUI/input:/workspace/ComfyUI/input + - /opt/ComfyUI/custom_nodes:/workspace/ComfyUI/custom_nodes + environment: + - PUID=1000 + - PGID=1000 + - CUDA_VISIBLE_DEVICES=0,1 # GPU1 = RTX 3060 12 GB & GPU0 = RTX 3070 TI 8 GB --> Erste Zahl ist Primär GPU + restart: unless-stopped + runtime: nvidia \ No newline at end of file