Merge 3335f4ad0e12e78c8d691cd5b0cac107b8ac1911 into 374bb6cc384d2a19422c0b07d69de0a41d1f3f4d

This commit is contained in:
ShadowCrafter011 2025-03-04 11:11:35 -05:00 committed by GitHub
commit 91a0186bb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 59 additions and 0 deletions

2
.dockerignore Normal file
View File

@ -0,0 +1,2 @@
models
models/

19
Dockerfile Normal file
View File

@ -0,0 +1,19 @@
FROM python:3.10-bookworm
WORKDIR /webui
RUN apt-get update && \
apt-get install ffmpeg libsm6 libxext6 dos2unix google-perftools -y
COPY . .
RUN dos2unix ./webui.sh ./webui-user.sh
RUN groupadd --system --gid 1000 webui && \
useradd webui --uid 1000 --gid 1000 --create-home --shell /bin/bash && \
chown -R webui:webui .
USER 1000:1000
RUN ./webui.sh --exit --skip-torch-cuda-test
CMD [ "./webui.sh", "--skip-prepare-environment", "--listen" ]

View File

@ -104,6 +104,16 @@ Alternatively, use online services (like Google Colab):
- [List of Online Services](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services)
### Running with Docker
DISCLAIMER: This currently only works with NVIDIA GPUs
You need to have [Docker](https://www.docker.com/) installed on your system. Then clone this repository and execute `docker compose up` in the root of the repository. The first time you execute this command will take a long time as all the dependencies are installed. Subsequent runs of the command should start up the webui pretty much instantly. To stop the webui press CTRL+C and wait a few seconds.
Models are provided to the Docker container using a bind mount. This means that if you add a new model to the models directory it should be available in the webui after a checkpoint refresh without needing to rebuild or restart the container.
The server will be accessible at [localhost:7860](localhost:7860)
### Installation on Windows 10/11 with NVidia-GPUs using release package
1. Download `sd.webui.zip` from [v1.0.0-pre](https://github.com/AUTOMATIC1111/stable-diffusion-webui/releases/tag/v1.0.0-pre) and extract its contents.
2. Run `update.bat`.

28
compose.yml Normal file
View File

@ -0,0 +1,28 @@
services:
webui:
build: .
volumes:
- type: bind
source: ./models
target: /webui/models
- type: bind
source: ./outputs
target: /webui/outputs
- type: bind
source: ./extensions
target: /webui/extensions
- type: bind
source: ./embeddings
target: /webui/embeddings
- type: bind
source: ./configs
target: /webui/configs
ports:
- 7860:7860
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]