fixing issues with middleware

This commit is contained in:
Brian Gebel 2025-04-28 20:36:51 -07:00
parent 8a615e2637
commit dc9aaeaf26
3 changed files with 9 additions and 1 deletions

View file

@ -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

View file

@ -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 . .

View file

@ -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.