This is Unofficial image for Stable Diffusion web UI
3.3K
Unofficial image for Stable Diffusion web UIEach tag is date (yyyymmdd) of checkout from :
https://github.com/AUTOMATIC1111/stable-diffusion-webui
If you find any bugs or want to suggest some improvements, you can contact me at [email protected]
0.0.0.0) host IP use:docker run --gpus all -it --rm -u $(id -u):$(id -g) -p=0.0.0.0:8888:7860 -v HOST_PATH_TO_SD_MODELS:/workspace/models/Stable-diffusion -v HOST_PATH_TO_OUTPUTS:/workspace/output freeze1111/stable-diffusion-webui:latest
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y \
git \
python3 \
python3-pip \
python3-venv \
ffmpeg \
libsm6 \
libxext6 \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
RUN mkdir /workspace
RUN useradd -ms /bin/bash user
RUN chown -R user:user /workspace
RUN chmod 755 /workspace
USER user
WORKDIR /workspace
RUN git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git .
RUN python3 -m venv venv/
RUN ./webui.sh --listen --exit --skip-torch-cuda-test --no-download-sd-model
# default command on start
CMD ["sh", "-c", "./webui.sh --listen --no-download-sd-model"]
Content type
Image
Digest
sha256:c7cccf7c1…
Size
5.5 GB
Last updated
about 2 years ago
docker pull freeze1111/stable-diffusion-webui