2022-09-26 16:02:48 +03:00
|
|
|
# This file is part of stable-diffusion-webui (https://github.com/sd-webui/stable-diffusion-webui/).
|
|
|
|
|
|
|
|
# Copyright 2022 sd-webui team.
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
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-10-01 01:42:35 +03:00
|
|
|
- ~/.huggingface/token:/root/.huggingface/token
|
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
|
|
|
|
|
|
|
volumes:
|
|
|
|
root_profile:
|