Skip to content

Releases: YanWenKun/ComfyUI-Docker

v6.0

Choose a tag to compare

@YanWenKun YanWenKun released this 15 Oct 08:06
91e1b72

It’s been a long time since the last release, and many major events have taken place in the AIGC field. This project itself has also undergone significant updates — it’s time to mark a new milestone.

Added Image Tags

  • cpu
  • cu126-slim
  • cu128-slim
  • cu130-slim
  • cu126-megapak
  • cu128-megapak
  • xpu
  • xpu-cn

Retired Image Tags

  • cu118-slim
  • cu118-megapak
    • Retired with PyTorch 2.7.1
  • cu121
  • cu121-megapak
    • Retired with PyTorch 2.5.1
  • cu124-cn
  • cu124-slim
  • cu124-megapak
    • Retired with PyTorch 2.6.0
  • cu128-test
  • cu129-slim
  • cu129-test
  • cu129-megapak
    • Retired with PyTorch 2.8.0
  • comfy3d-pt22
  • comfy3d-pt23
  • comfy3d-pt25
  • direct3ds2

Planned Image Tags

  • cu130-megapak
    • Planned to use Python 3.14t (free-threading, no GIL). Waiting for the ecosystem.
    • Python 3.14t not feasible, rollback to Python 3.13 (with GIL).
  • cu128-cn
  • rocm-cn

Features for New Image Tags

  • Speed up startup time. First starts no longer download anything from the Internet.

    • Now a ComfyUI bundle is preloaded in the image for copy on-demand.
    • No longer download "out-of-box" SD models. It's not necessary now.
  • Mount model files and user files separately.

  • Speed up image pulling by breaking down the steps in Dockerfile to have more smaller image layers.

  • All changes are backward-compatible.

Minor Changes

Thanks

v5.0

Choose a tag to compare

@YanWenKun YanWenKun released this 11 Sep 05:07
047d19e

We have come a long way since the last release, and now is a good time to mark a milestone.

Major changes

Minor changes

  • Images on Docker Hub are now tagged with date.
  • cu121, cu121-megapak, and cu124-cn now use stable version of ComfyUI (with a release tag on GitHub).
  • Updated download lists, concise for cu121, comprehensive for megapaks.
  • Added sponsor link (Ko-fi).
  • More

Thanks

Thanks @bashtoni for committing 9f1c4ed
Thanks for the information in issues #36 #37 #38 #41 #42 #55 #56

v4.0

Choose a tag to compare

@YanWenKun YanWenKun released this 16 Apr 10:01
7b1feef

Major changes

  • Added new image megapak for dev and all-in-one usage.
  • Overhauled rocm with AMD official PyTorch packages.

Minor changes

  • Added support for ComfyUI-3D-Pack.
  • Added wrapper script for rootless delploy.
  • Added x264 & x265 codec for ffmpeg.
  • Fixed "missing CUDA provider" for ONNX Runtime.
  • Pycache (.pyc files) will be saved in .cache folder (easy for cleaning).
  • User script set-proxy.sh will run before downloading starts.
  • Shrink download list.
  • More

Thanks

Thanks @M1kep for committing 3471e8d, b8c9d87, 2d75635
Thanks @petemyron for committing 0d27a97
Thanks @chadly for committing 3448bdd
Thanks for information #15 #16 #20 #26

Quick start

  • using docker run:
mkdir -p storage

docker run -it --rm \
  --name comfyui \
  --gpus all \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/home/runner \
  -e CLI_ARGS="" \
  yanwk/comfyui-boot:latest

v3.1

Choose a tag to compare

@YanWenKun YanWenKun released this 18 Mar 13:24
bd5b6de
  • Add back xFormers for compatibility on some Linux hosts.
    • To skip xFormers, add --use-pytorch-cross-attention to CLI_ARGS.

Quick start using docker run:

mkdir -p storage

docker run -it \
  --name comfyui \
  --gpus all \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/home/runner \
  -e CLI_ARGS="" \
  yanwk/comfyui-boot:latest

v3.0

Choose a tag to compare

@YanWenKun YanWenKun released this 09 Mar 01:39
48ac30a
  • Removed xFormers as PyTorch now performs good enough.

Quick start using docker run:

mkdir -p storage

docker run -it \
  --name comfyui \
  --gpus all \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/home/runner \
  --env CLI_ARGS="" \
  yanwk/comfyui-boot:latest

v2.0

Choose a tag to compare

@YanWenKun YanWenKun released this 20 Oct 16:19
fcb50bf

Quick start using docker run:

mkdir -p storage

docker run -it \
  --name comfyui \
  --gpus all \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/home/runner \
  --env CLI_ARGS="" \
  yanwk/comfyui-boot:latest

v1.0

Choose a tag to compare

@YanWenKun YanWenKun released this 24 Mar 04:34
4d020a2

Quick start using docker run:

mkdir -p storage

docker run -it \
  --name comfyui \
  --gpus all \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/home/runner \
  --env CLI_ARGS="" \
  yanwk/comfyui-boot:latest