2022-08-27 11:38:12 +00:00
|
|
|
version: '3.9'
|
|
|
|
|
2022-09-11 18:18:50 +00:00
|
|
|
x-base_service: &base_service
|
2022-08-27 11:38:12 +00:00
|
|
|
ports:
|
|
|
|
- "7860:7860"
|
|
|
|
volumes:
|
2022-10-01 10:57:53 +00:00
|
|
|
- &v1 ./data:/data
|
2022-09-11 18:18:50 +00:00
|
|
|
- &v2 ./output:/output
|
2023-06-24 08:06:30 +00:00
|
|
|
stop_signal: SIGKILL
|
|
|
|
tty: true
|
2022-08-27 11:38:12 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
reservations:
|
|
|
|
devices:
|
|
|
|
- driver: nvidia
|
|
|
|
device_ids: ['0']
|
2023-06-02 19:29:00 +00:00
|
|
|
capabilities: [compute, utility]
|
2022-09-11 18:18:50 +00:00
|
|
|
|
|
|
|
name: webui-docker
|
|
|
|
|
|
|
|
services:
|
|
|
|
download:
|
|
|
|
build: ./services/download/
|
|
|
|
profiles: ["download"]
|
|
|
|
volumes:
|
|
|
|
- *v1
|
|
|
|
|
2022-10-01 10:57:53 +00:00
|
|
|
auto: &automatic
|
2022-09-11 18:18:50 +00:00
|
|
|
<<: *base_service
|
|
|
|
profiles: ["auto"]
|
|
|
|
build: ./services/AUTOMATIC1111
|
2023-06-25 10:42:04 +00:00
|
|
|
image: sd-auto:60
|
2022-09-11 18:18:50 +00:00
|
|
|
environment:
|
2022-12-10 11:06:37 +00:00
|
|
|
- CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api
|
2022-09-11 18:18:50 +00:00
|
|
|
|
2022-10-01 10:57:53 +00:00
|
|
|
auto-cpu:
|
2022-09-11 18:18:50 +00:00
|
|
|
<<: *automatic
|
|
|
|
profiles: ["auto-cpu"]
|
|
|
|
deploy: {}
|
|
|
|
environment:
|
2023-02-05 10:04:32 +00:00
|
|
|
- CLI_ARGS=--no-half --precision full --allow-code --enable-insecure-extension-access --api
|
2022-09-11 18:18:50 +00:00
|
|
|
|
2023-05-06 07:48:38 +00:00
|
|
|
invoke: &invoke
|
2023-01-07 17:58:50 +00:00
|
|
|
<<: *base_service
|
|
|
|
profiles: ["invoke"]
|
|
|
|
build: ./services/invoke/
|
2023-06-24 08:06:30 +00:00
|
|
|
image: sd-invoke:30
|
2023-01-07 17:58:50 +00:00
|
|
|
environment:
|
|
|
|
- PRELOAD=true
|
2023-05-06 07:48:38 +00:00
|
|
|
- CLI_ARGS=--xformers
|
|
|
|
|
|
|
|
# invoke-cpu:
|
|
|
|
# <<: *invoke
|
|
|
|
# profiles: ["invoke-cpu"]
|
|
|
|
# environment:
|
|
|
|
# - PRELOAD=true
|
|
|
|
# - CLI_ARGS=--always_use_cpu
|
2023-01-07 17:58:50 +00:00
|
|
|
|
2023-04-21 19:34:17 +00:00
|
|
|
comfy: &comfy
|
|
|
|
<<: *base_service
|
|
|
|
profiles: ["comfy"]
|
|
|
|
build: ./services/comfy/
|
2023-06-24 08:06:30 +00:00
|
|
|
image: sd-comfy:3
|
2023-04-21 19:34:17 +00:00
|
|
|
environment:
|
|
|
|
- CLI_ARGS=
|
|
|
|
|
|
|
|
|
|
|
|
comfy-cpu:
|
|
|
|
<<: *comfy
|
|
|
|
profiles: ["comfy-cpu"]
|
|
|
|
deploy: {}
|
|
|
|
environment:
|
|
|
|
- CLI_ARGS=--cpu
|