Spaces:
Running
Running
new
Browse files- Dockerfile +9 -6
Dockerfile
CHANGED
@@ -55,13 +55,13 @@ RUN wget -c https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt
|
|
55 |
RUN wget -c https://huggingface.co/stabilityai/stable-video-diffusion-img2vid -P ./models/checkpoints/
|
56 |
|
57 |
# SDXL
|
58 |
-
RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/
|
59 |
-
RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/
|
60 |
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0_0.9vae.safetensors -P ./models/checkpoints/
|
61 |
|
62 |
# SD1.5
|
63 |
# RUN wget -c https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt -P ./models/checkpoints/
|
64 |
-
RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/
|
65 |
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/
|
66 |
# Some SD1.5 anime style
|
67 |
# RUN wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_hard.safetensors -P ./models/checkpoints/
|
@@ -135,14 +135,17 @@ RUN echo "Done"
|
|
135 |
|
136 |
# instal custom nodes
|
137 |
RUN echo "Installing custom nodes..."
|
138 |
-
|
|
|
139 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts
|
140 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
|
141 |
RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
142 |
RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes
|
143 |
-
|
|
|
|
|
144 |
# ComfyUI Manager
|
145 |
-
|
146 |
|
147 |
RUN echo "Done"
|
148 |
|
|
|
55 |
RUN wget -c https://huggingface.co/stabilityai/stable-video-diffusion-img2vid -P ./models/checkpoints/
|
56 |
|
57 |
# SDXL
|
58 |
+
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0.safetensors -P ./models/checkpoints/
|
59 |
+
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/resolve/main/sd_xl_refiner_1.0.safetensors -P ./models/checkpoints/
|
60 |
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/resolve/main/sd_xl_base_1.0_0.9vae.safetensors -P ./models/checkpoints/
|
61 |
|
62 |
# SD1.5
|
63 |
# RUN wget -c https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.ckpt -P ./models/checkpoints/
|
64 |
+
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1-base/resolve/main/v2-1_512-ema-pruned.safetensors -P ./models/checkpoints/
|
65 |
# RUN wget -c https://huggingface.co/stabilityai/stable-diffusion-2-1/resolve/main/v2-1_768-ema-pruned.safetensors -P ./models/checkpoints/
|
66 |
# Some SD1.5 anime style
|
67 |
# RUN wget -c https://huggingface.co/WarriorMama777/OrangeMixs/resolve/main/Models/AbyssOrangeMix2/AbyssOrangeMix2_hard.safetensors -P ./models/checkpoints/
|
|
|
135 |
|
136 |
# instal custom nodes
|
137 |
RUN echo "Installing custom nodes..."
|
138 |
+
|
139 |
+
# nodes
|
140 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfy_controlnet_preprocessors && cd comfy_controlnet_preprocessors && python install.py --no_download_ckpts
|
141 |
RUN cd custom_nodes && git clone https://github.com/Fannovel16/comfyui_controlnet_aux && cd comfyui_controlnet_aux && pip install -r requirements.txt
|
142 |
RUN cd custom_nodes && git clone https://github.com/Stability-AI/stability-ComfyUI-nodes && cd stability-ComfyUI-nodes && pip install -r requirements.txt
|
143 |
RUN cd custom_nodes && git clone https://github.com/EllangoK/ComfyUI-post-processing-nodes
|
144 |
+
|
145 |
+
RUN cd custom_nodes && git clone https://github.com/kijai/ComfyUI-SVD && cd ComfyUI-SVD && pip install -r requirements.txt
|
146 |
+
|
147 |
# ComfyUI Manager
|
148 |
+
RUN cd custom_nodes && git clone https://github.com/ltdrdata/ComfyUI-Manager.git
|
149 |
|
150 |
RUN echo "Done"
|
151 |
|