wrdias commited on
Commit
e61feef
·
1 Parent(s): 6a4eed5

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +27 -35
Dockerfile CHANGED
@@ -140,25 +140,24 @@ RUN echo "Downloading checkpoints..." && \
140
  # ComfyUI Manager
141
  RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \
142
 
143
- pip install insightface && \
144
- git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite && \
145
- git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet && \
146
- git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack && \
147
- pip install basicsr && \
148
- git clone https://github.com/Gourieff/comfyui-reactor-node && \
149
- git clone https://github.com/FizzleDorf/ComfyUI_FizzNodes && \
150
- git clone https://github.com/ssitu/ComfyUI_UltimateSDUpscale --recursive && \
151
- git clone https://github.com/BlenderNeko/ComfyUI_TiledKSampler.git && \
152
- git clone https://github.com/BlenderNeko/ComfyUI_SeeCoder.git && \
153
- pip install lpips && \
154
- git clone https://github.com/mav-rik/facerestore_cf.git && \
155
- git clone https://github.com/cubiq/ComfyUI_IPAdapter_plus.git && \
156
- git clone https://github.com/SLAPaper/ComfyUI-Image-Selector.git && \
157
- git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git && \
158
- git clone https://github.com/jags111/efficiency-nodes-comfyui.git && \
159
- git clone https://github.com/JPS-GER/ComfyUI_JPS-Nodes.git && \
160
- git clone https://github.com/Fannovel16/comfyui_controlnet_aux && \
161
- git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && \
162
 
163
  # Install custom nodes
164
  echo "Installing custom nodes..."
@@ -170,9 +169,6 @@ RUN echo "Downloading checkpoints..." && \
170
  # RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes --depth 1
171
  # RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
172
  # RUN cd custom_nodes && git clone https://github.com/TechnoByteJS/comfy-aesthetic-nodes --depth 1 && cd comfy-aesthetic-nodes && pip install -r requirements.txt
173
-
174
- RUN cd custom_nodes && git clone https://github.com/WASasquatch/was-node-suite-comfyui.git --depth 1 && cd was-node-suite-comfyui && pip install -r requirements.txt
175
-
176
  # RUN cd custom_nodes && git clone https://github.com/0xbitches/ComfyUI-LCM.git --depth 1
177
  # RUN cd custom_nodes && echo "#Plz don't delete this file, just edit it when neccessary." > ComfyUI-LCM/config.yaml
178
  # RUN cd custom_nodes && echo 'ckpts_path: "./ckpts"' >> ComfyUI-LCM/config.yaml
@@ -181,22 +177,18 @@ RUN echo "Downloading checkpoints..." && \
181
 
182
  # RUN cd custom_nodes && git clone https://github.com/WASasquatch/PowerNoiseSuite.git
183
  # RUN cd custom_nodes && git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git && cd ymc-node-suite-comfyui && pip install -r requirements.txt
184
-
185
- # RUN cd custom_nodes && git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git --depth 1 && cd ComfyUI-Frame-Interpolation && python install.py
186
-
187
- RUN cd custom_nodes && git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved
188
-
189
  RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15_v2.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
190
  RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
191
 
192
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanLeft.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
193
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanRight.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
194
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_RollingAnticlockwise.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
195
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_RollingClockwise.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
196
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_TiltDown.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
197
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_TiltUp.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
198
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomIn.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
199
- RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomOut.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
200
 
201
  RUN echo "Done"
202
 
 
140
  # ComfyUI Manager
141
  RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \
142
 
143
+ !git clone https://github.com/theUpsider/ComfyUI-Logic.git
144
+ !git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git
145
+ !git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes.git
146
+ !git clone https://github.com/FizzleDorf/ComfyUI_FizzNodes.git
147
+ !git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet.git
148
+ !git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved.git
149
+ !git clone https://github.com/WASasquatch/was-node-suite-comfyui.git
150
+ !git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git
151
+ !git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git
152
+ !git clone https://github.com/mav-rik/facerestore_cf.git
153
+ !git clone https://github.com/Stability-AI/stability-ComfyUI-nodes.git
154
+ !git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git
155
+ !git clone https://github.com/kijai/ComfyUI-KJNodes.git
156
+ !git clone https://github.com/giriss/comfy-image-saver.git
157
+ !git clone https://github.com/shiimizu/ComfyUI_smZNodes.git
158
+ !git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git
159
+ !git clone https://github.com/adieyal/comfyui-dynamicprompts.git
160
+ !git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git
 
161
 
162
  # Install custom nodes
163
  echo "Installing custom nodes..."
 
169
  # RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes --depth 1
170
  # RUN cd custom_nodes && git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes --depth 1
171
  # RUN cd custom_nodes && git clone https://github.com/TechnoByteJS/comfy-aesthetic-nodes --depth 1 && cd comfy-aesthetic-nodes && pip install -r requirements.txt
 
 
 
172
  # RUN cd custom_nodes && git clone https://github.com/0xbitches/ComfyUI-LCM.git --depth 1
173
  # RUN cd custom_nodes && echo "#Plz don't delete this file, just edit it when neccessary." > ComfyUI-LCM/config.yaml
174
  # RUN cd custom_nodes && echo 'ckpts_path: "./ckpts"' >> ComfyUI-LCM/config.yaml
 
177
 
178
  # RUN cd custom_nodes && git clone https://github.com/WASasquatch/PowerNoiseSuite.git
179
  # RUN cd custom_nodes && git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git && cd ymc-node-suite-comfyui && pip install -r requirements.txt
180
+
 
 
 
 
181
  RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15_v2.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
182
  RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/mm_sd_v15.ckpt -P ./ComfyUI-AnimateDiff-Evolved/models/
183
 
184
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanLeft.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
185
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_PanRight.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
186
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_RollingAnticlockwise.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
187
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_RollingClockwise.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
188
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_TiltDown.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
189
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_TiltUp.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
190
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomIn.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
191
+ # RUN cd custom_nodes && wget -c https://huggingface.co/guoyww/animatediff/resolve/main/v2_lora_ZoomOut.ckpt -P ./custom_nodes/ComfyUI-AnimateDiff-Evolved/motion_lora/
192
 
193
  RUN echo "Done"
194