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-09-11 18:18:50 +00:00
|
|
|
- &v1 ./cache:/cache
|
|
|
|
- &v2 ./output:/output
|
2022-08-27 11:38:12 +00:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
reservations:
|
|
|
|
devices:
|
|
|
|
- driver: nvidia
|
|
|
|
device_ids: ['0']
|
|
|
|
capabilities: [gpu]
|
2022-09-11 18:18:50 +00:00
|
|
|
|
|
|
|
name: webui-docker
|
|
|
|
|
|
|
|
services:
|
|
|
|
download:
|
|
|
|
build: ./services/download/
|
|
|
|
profiles: ["download"]
|
|
|
|
volumes:
|
|
|
|
- *v1
|
|
|
|
|
|
|
|
hlky:
|
|
|
|
<<: *base_service
|
|
|
|
profiles: ["hlky"]
|
|
|
|
build: ./services/hlky/
|
|
|
|
environment:
|
|
|
|
- CLI_ARGS=--optimized-turbo
|
|
|
|
|
|
|
|
automatic1111: &automatic
|
|
|
|
<<: *base_service
|
|
|
|
profiles: ["auto"]
|
|
|
|
build: ./services/AUTOMATIC1111
|
|
|
|
volumes:
|
|
|
|
- *v1
|
|
|
|
- *v2
|
2022-09-12 20:21:03 +00:00
|
|
|
- ./services/AUTOMATIC1111/config.json:/stable-diffusion-webui/config.json
|
2022-09-11 18:18:50 +00:00
|
|
|
environment:
|
2022-09-21 17:10:27 +00:00
|
|
|
- CLI_ARGS=--allow-code --medvram
|
2022-09-11 18:18:50 +00:00
|
|
|
|
|
|
|
automatic1111-cpu:
|
|
|
|
<<: *automatic
|
|
|
|
profiles: ["auto-cpu"]
|
|
|
|
deploy: {}
|
|
|
|
environment:
|
|
|
|
- CLI_ARGS=--no-half --precision full
|
|
|
|
|
|
|
|
lstein:
|
|
|
|
<<: *base_service
|
|
|
|
profiles: ["lstein"]
|
|
|
|
build: ./services/lstein/
|
2022-09-16 14:40:20 +00:00
|
|
|
environment:
|
|
|
|
- PRELOAD=false
|
|
|
|
- CLI_ARGS=
|