From 007aac36acbe907d7a077f7bc5b44692f983adb9 Mon Sep 17 00:00:00 2001 From: Marc Blatter Date: Tue, 21 Oct 2025 11:32:53 +0000 Subject: [PATCH] compose_comfyui.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aktuelle Version ComfyUI mit Nvidia GPU Unterstützung --- compose_comfyui.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 compose_comfyui.yaml 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