kadirnar commited on
Commit
6c5c9a0
·
verified ·
1 Parent(s): d6b0051

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +27 -4
Dockerfile CHANGED
@@ -61,28 +61,51 @@ RUN wget -c https://huggingface.co/Lykon/dreamshaper-xl-v2-turbo/resolve/main/Dr
61
  RUN wget -c https://huggingface.co/Lykon/DreamShaper/resolve/main/DreamShaper_8_INPAINTING.inpainting.safetensors -P ./models/checkpoints/
62
  RUN wget -c https://huggingface.co/Lykon/DreamShaper/resolve/main/DreamShaper_8_pruned.safetensors -P ./models/checkpoints/
63
 
 
64
 
65
  RUN wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/
66
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-canny-rank256.safetensors -P ./models/controlnet/
67
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-depth-rank256.safetensors -P ./models/controlnet/
68
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-recolor-rank256.safetensors -P ./models/controlnet/
69
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-sketch-rank256.safetensors -P ./models/controlnet/
 
 
 
 
70
 
71
  RUN wget -c https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth -P ./models/upscale_models/
72
  RUN wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRGAN_x2.pth -P ./models/upscale_models/
73
  RUN wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRGAN_x4.pth -P ./models/upscale_models/
74
 
 
 
 
75
  RUN echo "Done"
76
 
77
  # instal custom nodes
78
  RUN echo "Installing custom nodes..."
79
- # Controlnet Preprocessor nodes by Fannovel16
80
- RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
82
  RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
83
- RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes
84
 
85
- RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
86
 
87
  RUN echo "Done"
88
 
 
61
  RUN wget -c https://huggingface.co/Lykon/DreamShaper/resolve/main/DreamShaper_8_INPAINTING.inpainting.safetensors -P ./models/checkpoints/
62
  RUN wget -c https://huggingface.co/Lykon/DreamShaper/resolve/main/DreamShaper_8_pruned.safetensors -P ./models/checkpoints/
63
 
64
+ RUN echo "Downloading Controlnet..."
65
 
66
  RUN wget -c https://huggingface.co/stabilityai/sd-vae-ft-mse-original/resolve/main/vae-ft-mse-840000-ema-pruned.safetensors -P ./models/vae/
67
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-canny-rank256.safetensors -P ./models/controlnet/
68
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-depth-rank256.safetensors -P ./models/controlnet/
69
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-recolor-rank256.safetensors -P ./models/controlnet/
70
  RUN wget -c https://huggingface.co/stabilityai/control-lora/resolve/main/control-LoRAs-rank256/control-lora-sketch-rank256.safetensors -P ./models/controlnet/
71
+ RUN wget -c https://huggingface.co/ArtGAN/Controlnet/resolve/main/controlnet-sdxl-canny-mid.safetensors -P ./models/controlnet/
72
+ RUN wget -c https://huggingface.co/ArtGAN/Controlnet/resolve/main/controlnet-sdxl-depth-mid.safetensors -P ./models/controlnet/
73
+
74
+ RUN echo "Downloading Upscaler..."
75
 
76
  RUN wget -c https://github.com/xinntao/Real-ESRGAN/releases/download/v0.1.0/RealESRGAN_x4plus.pth -P ./models/upscale_models/
77
  RUN wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRGAN_x2.pth -P ./models/upscale_models/
78
  RUN wget -c https://huggingface.co/sberbank-ai/Real-ESRGAN/resolve/main/RealESRGAN_x4.pth -P ./models/upscale_models/
79
 
80
+ RUN wget -c https://huggingface.co/ArtGAN/Controlnet/resolve/main/lcm-lora-sdv1-5.safetensors -P ./models/loras/
81
+ RUN wget -c https://huggingface.co/ArtGAN/Controlnet/resolve/main/lcm-lora-sdxl.safetensors -P ./models/loras/
82
+
83
  RUN echo "Done"
84
 
85
  # instal custom nodes
86
  RUN echo "Installing custom nodes..."
87
+
88
+ RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
89
+ RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && cd ComfyUI-Impact-Pack && python install.py
90
+ RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Inspire-Pack && cd ComfyUI-Inspire-Pack && python install.py
91
+ RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation && cd ComfyUI-Frame-Interpolation && python install.py
92
+ RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Video-Matting && cd ComfyUI-Video-Mattin && python install.py
93
+ RUN cd custom_nodes && git clone https://github.com/biegert/ComfyUI-CLIPSeg && cd ComfyUI-CLIPSeg && python install.py
94
+ RUN cd custom_nodes && git clone https://github.com/BlenderNeko/ComfyUI_Cutoff && cd ComfyUI_Cutoff && python install.py
95
+ RUN cd custom_nodes && git clone https://github.com/WASasquatch/PPF_Noise_ComfyUI && cd PPF_Noise_ComfyUI && python install.py
96
+ RUN cd custom_nodes && git clone https://github.com/WASasquatch/PowerNoiseSuite && cd PowerNoiseSuite && python install.py
97
+ RUN cd custom_nodes && git clone https://github.com/Jordach/comfy-plasma && cd comfy-plasma && python install.py
98
+ RUN cd custom_nodes && git clone https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes && cd ComfyUI_Comfyroll_CustomNodes && python install.py
99
+ RUN cd custom_nodes && git clone https://github.com/space-nuko/ComfyUI-OpenPose-Editor && cd ComfyUI-OpenPose-Editor && python install.py
100
+ RUN cd custom_nodes && git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus && cd ComfyUI_IPAdapter_plus && python install.py
101
+ RUN cd custom_nodes && git clone https://github.com/twri/sdxl_prompt_styler && cd sdxl_prompt_styler && python install.py
102
+ RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved && cd ComfyUI-AnimateDiff-Evolved && python install.py
103
+ RUN cd custom_nodes && git clone https://github.com/AIrjen/OneButtonPrompt && cd OneButtonPrompt && python install.py
104
+ RUN cd custom_nodes && git clone https://github.com/gokayfem/ComfyUI_VLM_nodes && cd ComfyUI_VLM_nodes && python install.py
105
+ RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py
106
  RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
107
  RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
 
108
 
 
109
 
110
  RUN echo "Done"
111