2022-09-07 01:50:14 +03:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
stable-diffusion:
|
2022-09-11 16:58:33 +03:00
|
|
|
container_name: sd-webui
|
2022-09-20 10:21:47 +03:00
|
|
|
image: stable-diffusion-webui:dev
|
2022-09-22 14:46:40 +03:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile
|
2022-09-07 01:50:14 +03:00
|
|
|
env_file: .env_docker
|
|
|
|
volumes:
|
|
|
|
- .:/sd
|
|
|
|
- ./outputs:/sd/outputs
|
2022-09-11 16:58:33 +03:00
|
|
|
- ./model_cache:/sd/model_cache
|
2022-09-07 01:50:14 +03:00
|
|
|
- root_profile:/root
|
|
|
|
ports:
|
|
|
|
- '7860:7860'
|
2022-09-14 01:58:38 +03:00
|
|
|
- '8501:8501'
|
2022-09-22 14:46:40 +03:00
|
|
|
healthcheck:
|
|
|
|
test: curl --fail http://localhost:8501 --head || curl --fail http://localhost:7860 --head || echo 1
|
|
|
|
interval: 30s
|
|
|
|
timeout: 1s
|
|
|
|
retries: 10
|
2022-09-07 01:50:14 +03:00
|
|
|
deploy:
|
|
|
|
resources:
|
|
|
|
reservations:
|
|
|
|
devices:
|
2022-09-11 16:58:33 +03:00
|
|
|
- capabilities: [ gpu ]
|
2022-09-07 01:50:14 +03:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
root_profile:
|