mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-06-13 12:04:56 +03:00
3682303355
### Update versions - auto: https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/03d62538aebeff51713619fe808c953bdb70193d - History Tab IS NOT WORKING YET! #138 - hlky: https://github.com/sd-webui/stable-diffusion-webui/commit/fd51bab1ec03543eb57faa954caab879ef2bafe7 - lstein: https://github.com/invoke-ai/InvokeAI/commit/fe2a2cfc8b6156805c420c026c5ef8bbb256899e Closes #102 the config file has been moved to `data/config/auto`
54 lines
1013 B
YAML
54 lines
1013 B
YAML
version: '3.9'
|
|
|
|
x-base_service: &base_service
|
|
ports:
|
|
- "7860:7860"
|
|
volumes:
|
|
- &v1 ./data:/data
|
|
- &v2 ./output:/output
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
device_ids: ['0']
|
|
capabilities: [gpu]
|
|
|
|
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
|
|
|
|
auto: &automatic
|
|
<<: *base_service
|
|
profiles: ["auto"]
|
|
build: ./services/AUTOMATIC1111
|
|
environment:
|
|
- CLI_ARGS=--allow-code --medvram
|
|
|
|
auto-cpu:
|
|
<<: *automatic
|
|
profiles: ["auto-cpu"]
|
|
deploy: {}
|
|
environment:
|
|
- CLI_ARGS=--no-half --precision full
|
|
|
|
lstein:
|
|
<<: *base_service
|
|
profiles: ["lstein"]
|
|
build: ./services/lstein/
|
|
environment:
|
|
- PRELOAD=true
|
|
- CLI_ARGS=
|