Uses the latest release of
https://github.com/Stability-AI/generative-models
45c443b316737a4ab6e40413d7794a7f5657c19f
Tested with the official SDXL 1.0 model from
https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/blob/main/sd_xl_base_1.0.safetensors
and official refiner from
https://huggingface.co/stabilityai/stable-diffusion-xl-refiner-1.0/blob/main/sd_xl_refiner_1.0.safetensors.
VAE:
https://huggingface.co/stabilityai/sdxl-vae/blob/main/sdxl_vae.safetensors
Closes #558
Closes #559
68f336bd99
---------
Co-authored-by: AbdBarho <ka70911@gmail.com>
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
version: '3.9'
|
|
|
|
x-base_service: &base_service
|
|
ports:
|
|
- "${WEBUI_PORT:-7860}:7860"
|
|
volumes:
|
|
- &v1 ./data:/data
|
|
- &v2 ./output:/output
|
|
stop_signal: SIGKILL
|
|
tty: true
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
device_ids: ['0']
|
|
capabilities: [compute, utility]
|
|
|
|
name: webui-docker
|
|
|
|
services:
|
|
download:
|
|
build: ./services/download/
|
|
profiles: ["download"]
|
|
volumes:
|
|
- *v1
|
|
|
|
auto: &automatic
|
|
<<: *base_service
|
|
profiles: ["auto"]
|
|
build: ./services/AUTOMATIC1111
|
|
image: sd-auto:63
|
|
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: &invoke
|
|
<<: *base_service
|
|
profiles: ["invoke"]
|
|
build: ./services/invoke/
|
|
image: sd-invoke:30
|
|
environment:
|
|
- PRELOAD=true
|
|
- CLI_ARGS=--xformers
|
|
|
|
# invoke-cpu:
|
|
# <<: *invoke
|
|
# profiles: ["invoke-cpu"]
|
|
# environment:
|
|
# - PRELOAD=true
|
|
# - CLI_ARGS=--always_use_cpu
|
|
|
|
comfy: &comfy
|
|
<<: *base_service
|
|
profiles: ["comfy"]
|
|
build: ./services/comfy/
|
|
image: sd-comfy:4
|
|
environment:
|
|
- CLI_ARGS=
|
|
|
|
|
|
comfy-cpu:
|
|
<<: *comfy
|
|
profiles: ["comfy-cpu"]
|
|
deploy: {}
|
|
environment:
|
|
- CLI_ARGS=--cpu
|