Skip to content

Latest commit

 

History

History
 
 

cu124-cn

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

适配国内网络环境的 ComfyUI 容器镜像

GitHub Workflow 执行状态

cu124-cn 是专门为国内网络环境考虑一个大而全的 Docker 镜像

包含组件

  • 基于 CUDA 12.4 的 PyTorch + xFormers 稳定版

  • Python dev (3.12)

  • GCC C++ (13)

  • OpenCV-devel

  • FFmpeg 与 x264、x265 编码器

  • CMake, Ninja 等编译工具

  • Vim, Fish, fd 等 CLI 工具

使用的镜像源

用法

使用 Docker
mkdir -p storage

docker run -it --rm \
  --name comfyui-mega \
  --gpus all \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/root \
  -e CLI_ARGS="--preview-method taesd" \
  -e PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" \
  -e HF_ENDPOINT="https://hf-mirror.com" \
  dhub.kubesre.xyz/yanwk/comfyui-boot:cu124-cn
使用 Podman
mkdir -p storage

podman run -it --rm \
  --name comfyui-mega \
  --device nvidia.com/gpu=all \
  --security-opt label=disable \
  --security-opt seccomp=unconfined \
  -p 8188:8188 \
  -v "$(pwd)"/storage:/root \
  -e CLI_ARGS="--preview-method taesd" \
  -e PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" \
  -e HF_ENDPOINT="https://hf-mirror.com" \
  dhub.kubesre.xyz/yanwk/comfyui-boot:cu124-cn

个人推荐使用一次性容器 (--rm) 来保持环境整洁、配置清晰。