Spaces:
Running
Running
Upload Dockerfile
Browse files- Dockerfile +24 -22
Dockerfile
CHANGED
@@ -57,15 +57,15 @@ RUN echo "Downloading checkpoints..." && \
|
|
57 |
#wget -c https://huggingface.co/Kybalico/CalicoMix/resolve/main/calicoMix_v75.safetensors -P ./models/checkpoints/ && \
|
58 |
#wget -c https://huggingface.co/Kybalico/CalicoMixDC/resolve/main/calicomix_dcV30.safetensors -P ./models/checkpoints/ && \
|
59 |
#wget -c https://huggingface.co/Kybalico/AnmitsuMimimi/resolve/main/anmitsuMimimi_v10.safetensors -P ./models/checkpoints/ && \
|
60 |
-
|
61 |
# SD1.5
|
62 |
-
wget -c https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt -P ./models/checkpoints/ && \
|
63 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/ && \
|
64 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/ && \
|
65 |
-
wget -c https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt/resolve/main/svd_xt.safetensors -P ./models/checkpoints/ && \
|
66 |
# SD2
|
67 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
68 |
-
wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
69 |
|
70 |
|
71 |
# Some SD1.5 anime style
|
@@ -94,7 +94,7 @@ RUN echo "Downloading checkpoints..." && \
|
|
94 |
# ControlNet
|
95 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
96 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/ && \
|
97 |
-
wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_canny_fp16.safetensors -P ./models/controlnet/ && \
|
98 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -P ./models/controlnet/ && \
|
99 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -P ./models/controlnet/ && \
|
100 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -P ./models/controlnet/ && \
|
@@ -140,25 +140,27 @@ RUN echo "Downloading checkpoints..." && \
|
|
140 |
# ComfyUI Manager
|
141 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \
|
142 |
|
143 |
-
git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite && \
|
144 |
-
git clone https://github.com/theUpsider/ComfyUI-Logic.git && \
|
145 |
git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git && \
|
146 |
-
git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes.git && \
|
147 |
git clone https://github.com/FizzleDorf/ComfyUI_FizzNodes.git && \
|
148 |
git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet.git && \
|
149 |
git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved.git && \
|
150 |
-
git clone https://github.com/WASasquatch/was-node-suite-comfyui.git
|
151 |
-
git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git && \
|
152 |
-
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git && \
|
153 |
-
git clone https://github.com/mav-rik/facerestore_cf.git && \
|
154 |
-
git clone https://github.com/Stability-AI/stability-ComfyUI-nodes.git && \
|
155 |
-
git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git && \
|
156 |
-
git clone https://github.com/kijai/ComfyUI-KJNodes.git && \
|
157 |
-
git clone https://github.com/giriss/comfy-image-saver.git && \
|
158 |
-
git clone https://github.com/shiimizu/ComfyUI_smZNodes.git && \
|
159 |
-
git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git
|
160 |
git clone https://github.com/adieyal/comfyui-dynamicprompts.git && \
|
161 |
-
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git
|
|
|
|
|
162 |
|
163 |
# Install custom nodes
|
164 |
echo "Installing custom nodes..."
|
|
|
57 |
#wget -c https://huggingface.co/Kybalico/CalicoMix/resolve/main/calicoMix_v75.safetensors -P ./models/checkpoints/ && \
|
58 |
#wget -c https://huggingface.co/Kybalico/CalicoMixDC/resolve/main/calicomix_dcV30.safetensors -P ./models/checkpoints/ && \
|
59 |
#wget -c https://huggingface.co/Kybalico/AnmitsuMimimi/resolve/main/anmitsuMimimi_v10.safetensors -P ./models/checkpoints/ && \
|
60 |
+
wget -O https://civitai.com/api/download/models/128713?type=Model&format=SafeTensor&size=pruned&fp=fp16 ./models/checkpoints/dreamshaper_8.safetensors && \
|
61 |
# SD1.5
|
62 |
+
#wget -c https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt -P ./models/checkpoints/ && \
|
63 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/ && \
|
64 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/ && \
|
65 |
+
#wget -c https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt/resolve/main/svd_xt.safetensors -P ./models/checkpoints/ && \
|
66 |
# SD2
|
67 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
68 |
+
#wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/ && \
|
69 |
|
70 |
|
71 |
# Some SD1.5 anime style
|
|
|
94 |
# ControlNet
|
95 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_ip2p_fp16.safetensors -P ./models/controlnet/ && \
|
96 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11e_sd15_shuffle_fp16.safetensors -P ./models/controlnet/ && \
|
97 |
+
#wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_canny_fp16.safetensors -P ./models/controlnet/ && \
|
98 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11f1p_sd15_depth_fp16.safetensors -P ./models/controlnet/ && \
|
99 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_inpaint_fp16.safetensors -P ./models/controlnet/ && \
|
100 |
# wget -c https://huggingface.co/comfyanonymous/ControlNet-v1-1_fp16_safetensors/resolve/main/control_v11p_sd15_lineart_fp16.safetensors -P ./models/controlnet/ && \
|
|
|
140 |
# ComfyUI Manager
|
141 |
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \
|
142 |
|
143 |
+
git clone https://github.com/Kosinkadink/ComfyUI-VideoHelperSuite.git && \
|
144 |
+
#!git clone https://github.com/theUpsider/ComfyUI-Logic.git && \
|
145 |
git clone https://github.com/Fannovel16/comfyui_controlnet_aux.git && \
|
146 |
+
#!git clone https://github.com/TinyTerra/ComfyUI_tinyterraNodes.git && \
|
147 |
git clone https://github.com/FizzleDorf/ComfyUI_FizzNodes.git && \
|
148 |
git clone https://github.com/Kosinkadink/ComfyUI-Advanced-ControlNet.git && \
|
149 |
git clone https://github.com/Kosinkadink/ComfyUI-AnimateDiff-Evolved.git && \
|
150 |
+
#!git clone https://github.com/WASasquatch/was-node-suite-comfyui.git && \
|
151 |
+
#!git clone https://github.com/Fannovel16/ComfyUI-Frame-Interpolation.git && \
|
152 |
+
#!git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git && \
|
153 |
+
#!git clone https://github.com/mav-rik/facerestore_cf.git && \
|
154 |
+
#!git clone https://github.com/Stability-AI/stability-ComfyUI-nodes.git && \
|
155 |
+
#!git clone https://github.com/Derfuu/Derfuu_ComfyUI_ModdedNodes.git && \
|
156 |
+
#!git clone https://github.com/kijai/ComfyUI-KJNodes.git && \
|
157 |
+
#!git clone https://github.com/giriss/comfy-image-saver.git && \
|
158 |
+
#!git clone https://github.com/shiimizu/ComfyUI_smZNodes.git && \
|
159 |
+
#!git clone https://github.com/YMC-GitHub/ymc-node-suite-comfyui.git && \
|
160 |
git clone https://github.com/adieyal/comfyui-dynamicprompts.git && \
|
161 |
+
git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git && \
|
162 |
+
git clone https://github.com/rgthree/rgthree-comfy.git && \
|
163 |
+
#!git clone https://github.com/Nuked88/ComfyUI-N-Nodes.git && \
|
164 |
|
165 |
# Install custom nodes
|
166 |
echo "Installing custom nodes..."
|