mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-24 08:24:23 +01:00
fixing issues with middleware
This commit is contained in:
parent
8a615e2637
commit
dc9aaeaf26
3
TASK.md
3
TASK.md
|
|
@ -1,3 +1,6 @@
|
|||
- [] Fix Mappings for models `/data/models` and `data/config/comfy/models` the later is created by ComfyManager
|
||||
- [] Add out of the box support for onnx but make it configurable (optional) not backed into the image
|
||||
- [] Run everything in an venv
|
||||
- [] Update docker-compose to be a more readable
|
||||
- [] Add support for swarm
|
||||
- [] Pin / configurable versions
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ WORKDIR /home/comfy/app
|
|||
RUN git clone --branch v0.3.30 --depth 1 https://github.com/comfyanonymous/ComfyUI.git . && \
|
||||
mkdir -p .local/bin && \
|
||||
pip install -r requirements.txt && \
|
||||
pip install onnxruntime onnxruntime_gpu
|
||||
# pip install onnxruntime-gpu # Should make it so this can be included maybe through a mountable requirements.txt or yaml?
|
||||
|
||||
COPY --chown=comfy:comfy . .
|
||||
|
||||
|
|
|
|||
|
|
@ -28,3 +28,8 @@ comfyui:
|
|||
# clip_vision: data/config/comfy/clip_vision
|
||||
# diffusers: data/config/comfy/diffusers
|
||||
# download_model_base: data/models
|
||||
|
||||
# Need this file to be loaded dynamically maybe as a vol?
|
||||
# - `ultralytics_bbox` - Specifies the paths for bbox YOLO models.
|
||||
# - `ultralytics_segm` - Specifies the paths for segm YOLO models.
|
||||
# - `ultralytics` - Allows the presence of `bbox/` and `segm/` subdirectories.
|
||||
Loading…
Reference in a new issue