Skip to content

Commit 51f8b75

Browse files
1.8.0 - Comfy Events Via Webhook (#20)
1 parent fd825d8 commit 51f8b75

27 files changed

+1311
-437
lines changed

README.md

Lines changed: 287 additions & 25 deletions
Large diffs are not rendered by default.

docker-compose.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
comfyui:
3-
image: ghcr.io/saladtechnologies/comfyui-api:comfy0.3.10-test-image
3+
image: ghcr.io/saladtechnologies/comfyui-api:comfy0.3.12-test-image
44
volumes:
55
- ./bin:/app/bin
66
- ./test/docker-image/models:/opt/ComfyUI/models
@@ -9,10 +9,14 @@ services:
99
context: ./test/docker-image
1010
dockerfile: Dockerfile
1111
args:
12-
- comfy_version=0.3.10
12+
- comfy_version=0.3.12
1313
ports:
1414
- "3000:3000"
1515
- "8188:8188"
16+
# environment:
17+
# ALWAYS_RESTART_COMFYUI: "true"
18+
# SYSTEM_WEBHOOK_URL: "http://host.docker.internal:1234/system"
19+
# SYSTEM_WEBHOOK_EVENTS: all
1620
deploy:
1721
resources:
1822
reservations:

docker/api.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ARG base=runtime
2-
ARG comfy_version=0.3.10
2+
ARG comfy_version=0.3.12
33
ARG pytorch_version=2.5.0
44
ARG cuda_version=12.1
55
FROM ghcr.io/saladtechnologies/comfyui-api:comfy${comfy_version}-torch${pytorch_version}-cuda${cuda_version}-${base}
66

77
ENV WORKFLOW_DIR=/workflows
88
ENV STARTUP_CHECK_MAX_TRIES=30
99

10-
ARG api_version=1.7.2
10+
ARG api_version=1.8.0
1111
ADD https://github.com/SaladTechnologies/comfyui-api/releases/download/${api_version}/comfyui-api .
1212
RUN chmod +x comfyui-api
1313

docker/build-api-images

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
usage="Usage: $0 [comfy_version] [torch_version] [cuda_version] [api_version]"
44

5-
comfy_version=${1:-0.3.10}
5+
comfy_version=${1:-0.3.12}
66
torch_version=${2:-2.5.0}
77
cuda_version=${3:-12.1}
88

docker/build-comfy-base-images

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /usr/bin/bash
22

3-
comfy_version=${1:-0.3.10}
3+
comfy_version=${1:-0.3.12}
44
torch_version=${2:-2.5.0}
55
cuda_version=${3:-12.1}
66
bases=("runtime" "devel")

docker/comfyui.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
1515
RUN pip install --upgrade pip
1616
RUN pip install comfy-cli
1717
WORKDIR /opt
18-
ARG comfy_version=0.3.10
18+
ARG comfy_version=0.3.12
1919
RUN git clone --depth 1 --branch v${comfy_version} https://github.com/comfyanonymous/ComfyUI.git
2020
WORKDIR /opt/ComfyUI
2121
RUN pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu121

docker/push-api-images

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
usage="Usage: $0 [comfy_version] [torch_version] [cuda_version] [api_version]"
44

5-
comfy_version=${1:-0.3.10}
5+
comfy_version=${1:-0.3.12}
66
torch_version=${2:-2.5.0}
77
cuda_version=${3:-12.1}
88

docker/push-comfy-base-images

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
usage="Usage: $0 [comfy_version] [torch_version] [cuda_version]"
44

5-
comfy_version=${1:-0.3.10}
5+
comfy_version=${1:-0.3.12}
66
torch_version=${2:-2.5.0}
77
cuda_version=${3:-12.1}
88

0 commit comments

Comments
 (0)