2a0de025e2
As discussed in Discussion [#367](https://github.com/AbdBarho/stable-diffusion-webui-docker/discussions/367), this adds support for the newer ComfyUI. I forked the fork that would already add this but the maintainer of that fork hasn't implemented the changes needed to properly get the output function working, which I did. I believe everything is functional though I have not tested every single node. I changed the table format for the README and a few other minor things for aesthetic reasons but if you want me to revert those, I will. --------- Co-authored-by: Jonathan Kovacs <jkovacs-dev@users.noreply.github.com> Co-authored-by: AbdBarho <ka70911@gmail.com>
81 lines
1.6 KiB
YAML
81 lines
1.6 KiB
YAML
version: '3.9'
|
|
|
|
x-base_service: &base_service
|
|
ports:
|
|
- "7860:7860"
|
|
volumes:
|
|
- &v1 ./data:/data
|
|
- &v2 ./output:/output
|
|
stop_signal: SIGINT
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
device_ids: ['0']
|
|
capabilities: [gpu]
|
|
|
|
name: webui-docker
|
|
|
|
services:
|
|
download:
|
|
build: ./services/download/
|
|
profiles: ["download"]
|
|
volumes:
|
|
- *v1
|
|
|
|
auto: &automatic
|
|
<<: *base_service
|
|
profiles: ["auto"]
|
|
build: ./services/AUTOMATIC1111
|
|
image: sd-auto:51
|
|
environment:
|
|
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
|
|
|
auto-cpu:
|
|
<<: *automatic
|
|
profiles: ["auto-cpu"]
|
|
deploy: {}
|
|
environment:
|
|
- CLI_ARGS=--no-half --precision full --allow-code --enable-insecure-extension-access --api
|
|
|
|
invoke:
|
|
<<: *base_service
|
|
profiles: ["invoke"]
|
|
build: ./services/invoke/
|
|
image: sd-invoke:27
|
|
environment:
|
|
- PRELOAD=true
|
|
- CLI_ARGS=--no-nsfw_checker --no-safety_checker --xformers
|
|
|
|
sygil: &sygil
|
|
<<: *base_service
|
|
profiles: ["sygil"]
|
|
build: ./services/sygil/
|
|
image: sd-sygil:16
|
|
environment:
|
|
- CLI_ARGS=--optimized-turbo
|
|
- USE_STREAMLIT=0
|
|
|
|
sygil-sl:
|
|
<<: *sygil
|
|
profiles: ["sygil-sl"]
|
|
environment:
|
|
- USE_STREAMLIT=1
|
|
|
|
comfy: &comfy
|
|
<<: *base_service
|
|
profiles: ["comfy"]
|
|
build: ./services/comfy/
|
|
image: sd-comfy:1
|
|
environment:
|
|
- CLI_ARGS=
|
|
|
|
|
|
comfy-cpu:
|
|
<<: *comfy
|
|
profiles: ["comfy-cpu"]
|
|
deploy: {}
|
|
environment:
|
|
- CLI_ARGS=--cpu
|