Skip to content

Instantly share code, notes, and snippets.

@greeze
Last active February 5, 2025 18:31
Show Gist options
  • Save greeze/a7c6da845c3cabd7737fb93068b64800 to your computer and use it in GitHub Desktop.
Save greeze/a7c6da845c3cabd7737fb93068b64800 to your computer and use it in GitHub Desktop.
AI-Dock ComfyUI provisioning
#!/bin/bash
# This file will be sourced in init.sh
# https://raw.githubusercontent.com/ai-dock/comfyui/main/config/provisioning/default.sh
# Packages are installed after nodes so we can fix them...
DEFAULT_WORKFLOW="https://raw.githubusercontent.com/ai-dock/comfyui/main/config/workflows/flux-comfyui-example.json"
APT_PACKAGES=(
)
PIP_PACKAGES=(
"transformers==4.47.0"
"sageattention"
)
NODES=(
"https://github.com/ltdrdata/ComfyUI-Manager"
"https://github.com/ltdrdata/ComfyUI-Impact-Pack"
"https://github.com/adieyal/comfyui-dynamicprompts"
"https://github.com/akatz-ai/ComfyUI-Depthflow-Nodes"
"https://github.com/BlenderNeko/ComfyUI_TiledKSampler"
"https://github.com/chrisgoringe/cg-use-everywhere"
"https://github.com/ciri/comfyui-model-downloader"
"https://github.com/city96/ComfyUI-GGUF"
"https://github.com/cubiq/ComfyUI_essentials"
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora"
"https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo"
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation"
"https://github.com/Fannovel16/comfyui_controlnet_aux"
"https://github.com/giriss/comfy-image-saver"
"https://github.com/gseth/ControlAltAI-Nodes"
"https://github.com/kijai/ComfyUI-Florence2"
"https://github.com/kijai/ComfyUI-HunyuanVideoWrapper"
"https://github.com/kijai/ComfyUI-KJNodes"
"https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite"
"https://github.com/phineas-pta/comfyui-auto-nodes-layout"
"https://github.com/pikenrover/ComfyUI_PRNodes"
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
"https://github.com/pythongosssss/ComfyUI-WD14-Tagger"
"https://github.com/rgthree/rgthree-comfy"
"https://github.com/ShmuelRonen/ComfyUI-EmptyHunyuanLatent"
"https://github.com/spacepxl/ComfyUI-Image-Filters"
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale"
"https://github.com/stavsap/comfyui-ollama"
"https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes"
"https://github.com/Tenney95/ComfyUI-NodeAligner"
"https://github.com/TheBill2001/comfyui-upscale-by-model"
"https://github.com/TTPlanetPig/Comfyui_TTP_Toolset"
"https://github.com/ty0x2333/ComfyUI-Dev-Utils"
"https://github.com/WASasquatch/was-node-suite-comfyui"
"https://github.com/welltop-cn/ComfyUI-TeaCache"
"https://github.com/XLabs-AI/x-flux-comfyui"
"https://github.com/yolain/ComfyUI-Easy-Use"
)
CHECKPOINT_MODELS=(
)
CLIP_MODELS=(
)
UNET_MODELS=(
)
VAE_MODELS=(
)
LORA_MODELS=(
)
ESRGAN_MODELS=(
)
CONTROLNET_MODELS=(
)
HUNYUAN_DIFFUSION_MODELS=(
)
HUNYUAN_VAE_MODELS=(
)
### DO NOT EDIT BELOW HERE UNLESS YOU KNOW WHAT YOU ARE DOING ###
function provisioning_start() {
if [[ ! -d /opt/environments/python ]]; then
export MAMBA_BASE=true
fi
source /opt/ai-dock/etc/environment.sh
source /opt/ai-dock/bin/venv-set.sh comfyui
# Get licensed models if HF_TOKEN set & valid
# if provisioning_has_valid_hf_token; then
# UNET_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/flux1-dev.safetensors")
# VAE_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-dev/resolve/main/ae.safetensors")
# else
# UNET_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/flux1-schnell.safetensors")
# VAE_MODELS+=("https://huggingface.co/black-forest-labs/FLUX.1-schnell/resolve/main/ae.safetensors")
# sed -i 's/flux1-dev\.safetensors/flux1-schnell.safetensors/g' /opt/ComfyUI/web/scripts/defaultGraph.js
# fi
provisioning_print_header
provisioning_get_apt_packages
provisioning_get_default_workflow
provisioning_get_nodes
provisioning_get_pip_packages
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/ckpt" \
"${CHECKPOINT_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/unet" \
"${UNET_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/lora" \
"${LORA_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/controlnet" \
"${CONTROLNET_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/vae" \
"${VAE_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/clip" \
"${CLIP_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/esrgan" \
"${ESRGAN_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/diffusion_models/hyvideo" \
"${HUNYUAN_DIFFUSION_MODELS[@]}"
provisioning_get_models \
"${WORKSPACE}/storage/stable_diffusion/models/vae/hyvid" \
"${HUNYUAN_VAE_MODELS[@]}"
provisioning_print_end
}
function pip_install() {
if [[ -z $MAMBA_BASE ]]; then
"$COMFYUI_VENV_PIP" install --no-cache-dir "$@"
else
micromamba run -n comfyui pip install --no-cache-dir "$@"
fi
}
function provisioning_get_apt_packages() {
if [[ -n $APT_PACKAGES ]]; then
sudo $APT_INSTALL ${APT_PACKAGES[@]}
fi
}
function provisioning_get_pip_packages() {
if [[ -n $PIP_PACKAGES ]]; then
pip_install ${PIP_PACKAGES[@]}
fi
}
function provisioning_get_nodes() {
for repo in "${NODES[@]}"; do
dir="${repo##*/}"
path="/opt/ComfyUI/custom_nodes/${dir}"
requirements="${path}/requirements.txt"
if [[ -d $path ]]; then
if [[ ${AUTO_UPDATE,,} != "false" ]]; then
printf "Updating node: %s...\n" "${repo}"
( cd "$path" && git pull )
if [[ -e $requirements ]]; then
pip_install -r "$requirements"
fi
fi
else
printf "Downloading node: %s...\n" "${repo}"
git clone "${repo}" "${path}" --recursive
if [[ -e $requirements ]]; then
pip_install -r "${requirements}"
fi
fi
done
}
function provisioning_get_default_workflow() {
if [[ -n $DEFAULT_WORKFLOW ]]; then
workflow_json=$(curl -s "$DEFAULT_WORKFLOW")
if [[ -n $workflow_json ]]; then
echo "export const defaultGraph = $workflow_json;" > /opt/ComfyUI/web/scripts/defaultGraph.js
fi
fi
}
function provisioning_get_models() {
if [[ -z $2 ]]; then return 1; fi
dir="$1"
mkdir -p "$dir"
shift
arr=("$@")
printf "Downloading %s model(s) to %s...\n" "${#arr[@]}" "$dir"
for url in "${arr[@]}"; do
printf "Downloading: %s\n" "${url}"
provisioning_download "${url}" "${dir}"
printf "\n"
done
}
function provisioning_print_header() {
printf "\n##############################################\n# #\n# Provisioning container #\n# #\n# This will take some time #\n# #\n# Your container will be ready on completion #\n# #\n##############################################\n\n"
if [[ $DISK_GB_ALLOCATED -lt $DISK_GB_REQUIRED ]]; then
printf "WARNING: Your allocated disk size (%sGB) is below the recommended %sGB - Some models will not be downloaded\n" "$DISK_GB_ALLOCATED" "$DISK_GB_REQUIRED"
fi
}
function provisioning_print_end() {
printf "\nProvisioning complete: Web UI will start now\n\n"
}
function provisioning_has_valid_hf_token() {
[[ -n "$HF_TOKEN" ]] || return 1
url="https://huggingface.co/api/whoami-v2"
response=$(curl -o /dev/null -s -w "%{http_code}" -X GET "$url" \
-H "Authorization: Bearer $HF_TOKEN" \
-H "Content-Type: application/json")
# Check if the token is valid
if [ "$response" -eq 200 ]; then
return 0
else
return 1
fi
}
function provisioning_has_valid_civitai_token() {
[[ -n "$CIVITAI_TOKEN" ]] || return 1
url="https://civitai.com/api/v1/models?hidden=1&limit=1"
response=$(curl -o /dev/null -s -w "%{http_code}" -X GET "$url" \
-H "Authorization: Bearer $CIVITAI_TOKEN" \
-H "Content-Type: application/json")
# Check if the token is valid
if [ "$response" -eq 200 ]; then
return 0
else
return 1
fi
}
# Download from $1 URL to $2 file path
function provisioning_download() {
if [[ -n $HF_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?huggingface\.co(/|$|\?) ]]; then
auth_token="$HF_TOKEN"
elif
[[ -n $CIVITAI_TOKEN && $1 =~ ^https://([a-zA-Z0-9_-]+\.)?civitai\.com(/|$|\?) ]]; then
auth_token="$CIVITAI_TOKEN"
fi
if [[ -n $auth_token ]];then
wget --header="Authorization: Bearer $auth_token" -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1"
else
wget -qnc --content-disposition --show-progress -e dotbytes="${3:-4M}" -P "$2" "$1"
fi
}
sudo apt-get update
sudo apt-get install -y libx11-dev libgl1-mesa-dev xorg-dev
provisioning_start
export CUDA_VISIBLE_DEVICES=0,1,2
curl -fsSL https://ollama.com/install.sh | sh
ollama serve & ollama pull dron3flyv3r/neural-daredevil-8b-abliterated
find "${WORKSPACE}/ComfyUI/custom_nodes" -name 'requirements.txt' -exec pip_install -r {} \;
ln -s "${WORKSPACE}/storage/stable_diffusion/models/*" "${WORKSPACE}/ComfyUI/models/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment