mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-06-13 12:04:56 +03:00
83b78fe504
### Update versions - auto: https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/dd911a47b3c3313b3938b700eb26cbd5bb3e1c95 - hlky: https://github.com/sd-webui/stable-diffusion-webui/commit/17748cbc9c34df44d0381c42e4f0fe1903089438 - lstein: https://github.com/lstein/stable-diffusion/commit/50d607ffea3734072a80e38b09ba0c3758af5d40
58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
version: '3.9'
|
|
|
|
x-base_service: &base_service
|
|
ports:
|
|
- "7860:7860"
|
|
volumes:
|
|
- &v1 ./cache:/cache
|
|
- &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
|
|
|
|
automatic1111: &automatic
|
|
<<: *base_service
|
|
profiles: ["auto"]
|
|
build: ./services/AUTOMATIC1111
|
|
volumes:
|
|
- *v1
|
|
- *v2
|
|
- ./services/AUTOMATIC1111/config.json:/stable-diffusion-webui/config.json
|
|
environment:
|
|
- CLI_ARGS=--medvram
|
|
|
|
automatic1111-cpu:
|
|
<<: *automatic
|
|
profiles: ["auto-cpu"]
|
|
deploy: {}
|
|
environment:
|
|
- CLI_ARGS=--no-half --precision full
|
|
|
|
lstein:
|
|
<<: *base_service
|
|
profiles: ["lstein"]
|
|
build: ./services/lstein/
|
|
environment:
|
|
- PRELOAD=false
|
|
- CLI_ARGS=
|