mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-08 16:44:20 +01:00
fix: docker-compose duplicate content
This commit is contained in:
parent
5441c3da5d
commit
23d80bddd8
|
|
@ -1,38 +1,40 @@
|
||||||
version: '3.9'
|
version: '3.9'
|
||||||
|
|
||||||
x-base_service: &base_service
|
x-base_service:
|
||||||
ports:
|
&base_service
|
||||||
- "7860:7860"
|
ports:
|
||||||
volumes:
|
- "7860:7860"
|
||||||
- &v1 ./cache:/cache
|
volumes:
|
||||||
- &v2 ./output:/output
|
- &v1 ./cache:/cache
|
||||||
deploy:
|
- &v2 ./output:/output
|
||||||
resources:
|
deploy:
|
||||||
reservations:
|
resources:
|
||||||
devices:
|
reservations:
|
||||||
- driver: nvidia
|
devices:
|
||||||
device_ids: ['0']
|
- driver: nvidia
|
||||||
capabilities: [gpu]
|
device_ids: [ '0' ]
|
||||||
|
capabilities: [ gpu ]
|
||||||
|
|
||||||
name: webui-docker
|
name: webui-docker
|
||||||
|
|
||||||
services:
|
services:
|
||||||
download:
|
download:
|
||||||
build: ./services/download/
|
build: ./services/download/
|
||||||
profiles: ["download"]
|
profiles: [ "download" ]
|
||||||
volumes:
|
volumes:
|
||||||
- *v1
|
- *v1
|
||||||
|
|
||||||
hlky:
|
hlky:
|
||||||
<<: *base_service
|
<<: *base_service
|
||||||
profiles: ["hlky"]
|
profiles: [ "hlky" ]
|
||||||
build: ./services/hlky/
|
build: ./services/hlky/
|
||||||
environment:
|
environment:
|
||||||
- CLI_ARGS=--optimized-turbo
|
- CLI_ARGS=--optimized-turbo
|
||||||
|
|
||||||
automatic1111: &automatic
|
automatic1111:
|
||||||
|
&automatic
|
||||||
<<: *base_service
|
<<: *base_service
|
||||||
profiles: ["auto"]
|
profiles: [ "auto" ]
|
||||||
build: ./services/AUTOMATIC1111
|
build: ./services/AUTOMATIC1111
|
||||||
volumes:
|
volumes:
|
||||||
- *v1
|
- *v1
|
||||||
|
|
@ -43,51 +45,12 @@ services:
|
||||||
|
|
||||||
automatic1111-cpu:
|
automatic1111-cpu:
|
||||||
<<: *automatic
|
<<: *automatic
|
||||||
profiles: ["auto-cpu"]
|
profiles: [ "auto-cpu" ]
|
||||||
deploy: {}
|
deploy: {}
|
||||||
environment:
|
environment:
|
||||||
- CLI_ARGS=--no-half --precision full
|
- CLI_ARGS=--no-half --precision full
|
||||||
|
|
||||||
lstein:
|
lstein:
|
||||||
<<: *base_service
|
<<: *base_service
|
||||||
profiles: ["lstein"]
|
profiles: [ "lstein" ]
|
||||||
build: ./services/lstein/
|
|
||||||
|
|
||||||
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 --opt-split-attention
|
|
||||||
|
|
||||||
automatic1111-cpu:
|
|
||||||
<<: *automatic
|
|
||||||
profiles: ["auto-cpu"]
|
|
||||||
deploy: {}
|
|
||||||
environment:
|
|
||||||
- CLI_ARGS=--no-half --precision full
|
|
||||||
|
|
||||||
lstein:
|
|
||||||
<<: *base_service
|
|
||||||
profiles: ["lstein"]
|
|
||||||
build: ./services/lstein/
|
build: ./services/lstein/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue