【AI应用】免费代码仓构建定制版本的ComfyUI应用镜像
免费代码仓构建定制版本的ComfyUI应用镜像
- 1 创建代码仓
- 1.1 注册登陆
- 1.2 创建代码仓
- 1.5 安装中文语言包
- 1.4 拉取ComfyUI官方代码
- 2 配置参数和预装插件
- 2.1 保留插件和模型的版本控制
- 2.2 克隆插件到代码仓
- 2.2.1 下载插件
- 2.2.2 把插件设置本仓库的子模块管理
- 3 定制Docker镜像
- 3.1 创建Dockfile
- 3.2 同步Dockfile到仓库
- 3.3 使用Dockfile构建Docker镜像
- 3.4 为Docker镜像创建自启动配置
- 4. 部署在线服务
- 4.1 关闭原生开发服务并删除
- 4.2 新建云原生开发环境
- 4.2.1 创建失败
- 4.2.2 开放公共权限
- 4.3 启动ComfyUI
- 4.3.1 开放所有IP访问的启动方式
- 4.3.2 免费成果
1 创建代码仓
1.1 注册登陆
https://cnb.cool
1.2 创建代码仓
- 为仓库起名
- 选择【云原生开发】初始化仓库
1.5 安装中文语言包
1.4 拉取ComfyUI官方代码
cnb-init-from https://github.com/comfyanonymous/ComfyUI
2 配置参数和预装插件
2.1 保留插件和模型的版本控制
把目录custom_nodes和models加入版本控制,以保留我们预装的插件。
-
修改.gitignore文件,移除custom_nodes和models
-
更新修改到代码仓
# 推送到远程仓库 master 分支
git checkout master
git add .gitignore
git commit -m "Modifyed .gitignore file"
git push origin master
2.2 克隆插件到代码仓
2.2.1 下载插件
# 安装插件
cd /workspace/custom_nodes
git clone https://github.com/ltdrdata/ComfyUI-Manager ComfyUI-Manager
git clone https://github.com/AIGODLIKE/AIGODLIKE-ComfyUI-Translation AIGODLIKE-ComfyUI-Translation
git clone https://github.com/yolain/ComfyUI-Easy-Use ComfyUI-Easy-Use
git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite ComfyUI-VideoHelperSuite
git clone https://github.com/crystian/ComfyUI-Crystools comfyui-crystools
git clone https://github.com/AlekPet/ComfyUI_Custom_Nodes_AlekPet comfyui_custom_nodes_alekpet
git clone https://github.com/pythongosssss/ComfyUI-WD14-Tagger comfyui-wd14-tagger
git clone https://github.com/chflame163/ComfyUI_LayerStyle ComfyUI_LayerStyle
git clone https://github.com/kijai/ComfyUI-DepthAnythingV2 comfyui-depthanythingv2
git clone https://github.com/ssitu/ComfyUI_UltimateSDUpscale comfyui_ultimatesdupscale
git clone https://github.com/kijai/ComfyUI-SUPIR comfyui-supir
git clone https://github.com/Fannovel16/comfyui_controlnet_aux comfyui_controlnet_aux
git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus ComfyUI_IPAdapter_plus
git clone https://github.com/lldacing/ComfyUI_PuLID_Flux_ll comfyui_pulid_flux_ll
git clone https://github.com/Gourieff/ComfyUI-ReActor comfyui-reactor
git clone https://github.com/kijai/ComfyUI-segment-anything-2 ComfyUI-segment-anything-2
git clone https://github.com/EvilBT/ComfyUI_SLK_joy_caption_two ComfyUI_SLK_joy_caption_two
git clone https://github.com/AIDC-AI/ComfyUI-Copilot comfyui-copilot
git clone https://github.com/city96/ComfyUI-GGUF ComfyUI-GGUF
git clone https://github.com/kijai/ComfyUI-IC-Light comfyui-ic-light
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack ComfyUI-Impact-Pack
git clone https://github.com/florestefano1975/comfyui-portrait-master comfyui-portrait-master
git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes derfuu_comfyui_moddednodes
git clone https://github.com/rgthree/rgthree-comfy rgthree-comfy
2.2.2 把插件设置本仓库的子模块管理