create deployment for stable-diffusion-webui-forge
This commit is contained in:
parent
ce8c2eecc3
commit
7f3b6e7240
|
@ -0,0 +1,27 @@
|
||||||
|
services:
|
||||||
|
stable-diffusion-webui-forge:
|
||||||
|
build: ./stable-diffusion-webui-forge
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- HSA_OVERRIDE_GFX_VERSION=11.0.0
|
||||||
|
ports:
|
||||||
|
- 7860:7860
|
||||||
|
devices:
|
||||||
|
- /dev/kfd
|
||||||
|
- /dev/dri
|
||||||
|
volumes:
|
||||||
|
- ./shared/lora:/app/models/Lora
|
||||||
|
- ./shared/tensors:/app/models/Stable-diffusion
|
||||||
|
- ./shared/vae/:/app/models/VAE
|
||||||
|
- ./shared/embeddings:/app/embeddings
|
||||||
|
- ./stable-diffusion-webui-forge/extensions:/app/extensions
|
||||||
|
- ./stable-diffusion-webui-forge/repositories:/app/repositories
|
||||||
|
- ./stable-diffusion-webui-forge/outputs:/app/outputs
|
||||||
|
- ./stable-diffusion-webui-forge/favorites:/app/log/images
|
||||||
|
group_add:
|
||||||
|
- video
|
||||||
|
ipc: host
|
||||||
|
cap_add:
|
||||||
|
- SYS_PTRACE
|
||||||
|
security_opt:
|
||||||
|
- seccomp=unconfined
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,45 @@
|
||||||
|
ARG PYTHON_VERSION=3.10
|
||||||
|
ARG ROCM_VERSION=6.1
|
||||||
|
|
||||||
|
# we do not use rocm/pytorch as it currently use python 3.7 and we require >=python 3.10
|
||||||
|
FROM rocm/rocm-terminal:${ROCM_VERSION}
|
||||||
|
ARG PYTHON_VERSION
|
||||||
|
ARG ROCM_VERSION
|
||||||
|
|
||||||
|
# switch to root for setup
|
||||||
|
USER root
|
||||||
|
|
||||||
|
RUN git clone https://github.com/lllyasviel/stable-diffusion-webui-forge /app
|
||||||
|
WORKDIR /app
|
||||||
|
RUN apt update \
|
||||||
|
&& apt upgrade -y \
|
||||||
|
&& apt install -y software-properties-common \
|
||||||
|
&& add-apt-repository ppa:deadsnakes/ppa \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y pciutils bc mesa-utils google-perftools \
|
||||||
|
&& apt install -y python${PYTHON_VERSION}-full \
|
||||||
|
&& curl -sS https://bootstrap.pypa.io/get-pip.py | python${PYTHON_VERSION} \
|
||||||
|
&& chown -R 1000:1000 /app \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
# switch back to unpreviledged user
|
||||||
|
USER 1000
|
||||||
|
|
||||||
|
RUN python${PYTHON_VERSION} -m venv /app/env \
|
||||||
|
&& sed -i'' -Ee "s/rocm[0-9]\.[0-9]/rocm${ROCM_VERSION}/g" webui.sh \
|
||||||
|
&& /app/env/bin/python -m pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/rocm${ROCM_VERSION} \
|
||||||
|
&& /app/env/bin/python -m pip install --no-cache-dir -r requirements_versions.txt
|
||||||
|
|
||||||
|
VOLUME ["/app/models/Lora", "/app/models/Stable-diffusion", "/app/models/VAE"]
|
||||||
|
VOLUME ["/app/embeddings"]
|
||||||
|
VOLUME ["/app/extensions"]
|
||||||
|
VOLUME ["/app/repositories"]
|
||||||
|
VOLUME ["/app/outputs"]
|
||||||
|
VOLUME ["/app/log/images"]
|
||||||
|
|
||||||
|
EXPOSE 7860
|
||||||
|
ENV python_cmd=/app/env/bin/python
|
||||||
|
ENV PYTORCH_CUDA_ALLOC_CONF="garbage_collection_threshold:0.9,max_split_size_mb:512"
|
||||||
|
ENV COMMANDLINE_ARGS="--listen --enable-insecure-extension-access --theme=dark --api --update-check"
|
||||||
|
ENTRYPOINT ["./webui.sh"]
|
||||||
|
CMD []
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
|
@ -0,0 +1,2 @@
|
||||||
|
*
|
||||||
|
!.gitignore
|
Loading…
Reference in New Issue