mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-06-13 12:04:56 +03:00
14c4b36aff
### Update versions - auto: https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/3f417566b0bda8eab05d247567aebf001c1d1725 ### Breaking changes: * renamed `automatic-1111` service to `auto` * the `cache` folder is now deprecated, replaced with `data` (see migration guide below) * `embeddings` folder has been moved to `data/embeddings` * use GFPGAN 1.4 ### Migration Guide Note: in theory, running the command ``` docker compose --profile download up --build ``` is all you need to use the new version, however, this means you will also have to download everything again. A new script is available under `scripts/migratev1tov2.sh` that will copy models to the new structure and should get you most of the way, run ```bash ./scripts/migratev1tov2.sh ``` or you can manually inspect the script and copy the files After that, run ``` docker compose --profile download up --build ``` to validate everything.
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 ./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
|
|
volumes:
|
|
- *v1
|
|
- *v2
|
|
- ./services/AUTOMATIC1111/config.json:/stable-diffusion-webui/config.json
|
|
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=false
|
|
- CLI_ARGS=
|