Compare commits

...

2 Commits

Author SHA1 Message Date
2ab020ce36 sdfghsdfgsdfg 2025-11-16 22:23:17 -05:00
643b9ca836 sdrftghdfhgshdfgs 2025-11-16 22:23:07 -05:00
2 changed files with 3 additions and 3 deletions

View File

@@ -53,5 +53,6 @@ docker-compose down
* The `CLI_ARGS` environment variables in each service are specific optimizations for each GPU type. You can customize these if you want to experiment with different settings.
* The `./output` and `./user` directories are used for saving generated images and custom workflows, respectively.
* Set the right ownership/permissions for `./models`, `./output`, and `./user` (`chown 1001:1001 models`)
Let me know if you run into any issues or have suggestions for improvements!

View File

@@ -20,10 +20,9 @@ RUN useradd -m "$DOCKER_USER"
# Clone vladmandic's stable diffusion
RUN \
git clone --depth 1 https://github.com/comfyanonymous/ComfyUI
WORKDIR /ComfyUI
WORKDIR /ComfyUI/custom_nodes/
RUN git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Manager /ComfyUI/custom_nodes/comfyui-manager && \
RUN git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Manager /ComfyUI/custom_nodes/ComfyUI-Manager && \
git clone --depth 1 https://github.com/SeanScripts/ComfyUI-Unload-Model.git /ComfyUI/custom_nodes/ComfyUI-Unload-Model && \
git clone --depth 1 https://github.com/ssitu/ComfyUI_UltimateSDUpscale --recursive /ComfyUI/custom_nodes/ComfyUI_UltimateSDUpscale && \
git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Impact-Pack /ComfyUI/custom_nodes/ComfyUI-Impact-Pack && \
@@ -36,7 +35,7 @@ RUN pip install --no-cache-dir --break-system-packages torch==2.10.0.dev20251116
# Install Python dependencies
RUN pip install --no-cache-dir --break-system-packages -r requirements.txt && \
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/comfyui-manager/requirements.txt && \
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Manager/requirements.txt && \
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Impact-Pack/requirements.txt && \
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Impact-Subpack/requirements.txt && \
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/comfyui-browser/requirements.txt && \