diff --git a/README.md b/README.md index ea7124d..b441c72 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,19 @@ Run Stable Diffusion on your machine with a nice UI without any hassle! -This repository provides multiple UIs for you to play around with stable diffusion: +## Setup & Usage + +Visit the wiki for [Setup](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Setup) and [Usage](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Usage) instructions, checkout the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/FAQ) page if you face any problems, or create a new issue! + + +## Contributing + +Contributions are welcome! **Create a discussion first of what the problem is and what you want to contribute (before you implement anything)** ## Features +This repository provides multiple UIs for you to play around with stable diffusion: + ### AUTOMATIC1111 [AUTOMATIC1111's fork](https://github.com/AUTOMATIC1111/stable-diffusion-webui) is imho the most feature rich yet elegant UI: @@ -55,15 +64,6 @@ Screenshots: | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | ![](https://user-images.githubusercontent.com/24505302/195158552-39f58cb6-cfcc-4141-9995-a626e3760752.jpg) | ![](https://user-images.githubusercontent.com/24505302/195158553-152a0ab8-c0fd-4087-b121-4823bcd8d6b5.jpg) | ![](https://user-images.githubusercontent.com/24505302/195158548-e118206e-c519-4915-85d6-4c248eb10fc0.jpg) | -## Setup & Usage - -Visit the wiki for [Setup](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Setup) and [Usage](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/Usage) instructions, checkout the [FAQ](https://github.com/AbdBarho/stable-diffusion-webui-docker/wiki/FAQ) page if you face any problems, or create a new issue! - -## Contributing - -Contributions are welcome! - -### **Create an issue first of what you want to contribute (before you implement anything)** ## Disclaimer diff --git a/docker-compose.yml b/docker-compose.yml index 01bd990..da34f00 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,7 +27,7 @@ services: <<: *base_service profiles: ["auto"] build: ./services/AUTOMATIC1111 - image: sd-auto:14 + image: sd-auto:16 environment: - CLI_ARGS=--allow-code --medvram --xformers @@ -42,7 +42,7 @@ services: <<: *base_service profiles: ["hlky"] build: ./services/hlky/ - image: sd-hlky:7 + image: sd-hlky:8 environment: - CLI_ARGS=--optimized-turbo - USE_STREAMLIT=0 @@ -51,7 +51,7 @@ services: <<: *base_service profiles: ["lstein"] build: ./services/lstein/ - image: sd-lstein:5 + image: sd-lstein:6 environment: - PRELOAD=true - CLI_ARGS=--max_loaded_models=1 diff --git a/services/AUTOMATIC1111/Dockerfile b/services/AUTOMATIC1111/Dockerfile index f954138..5ce8e92 100644 --- a/services/AUTOMATIC1111/Dockerfile +++ b/services/AUTOMATIC1111/Dockerfile @@ -34,7 +34,7 @@ SHELL ["/bin/bash", "-ceuxo", "pipefail"] ENV DEBIAN_FRONTEND=noninteractive PIP_PREFER_BINARY=1 PIP_NO_CACHE_DIR=1 -RUN pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113 +RUN pip install torch==1.12.1+cu116 torchvision==0.13.1+cu116 --extra-index-url https://download.pytorch.org/whl/cu116 RUN apt-get update && apt install fonts-dejavu-core rsync git jq moreutils -y && apt-get clean @@ -42,7 +42,7 @@ RUN apt-get update && apt install fonts-dejavu-core rsync git jq moreutils -y && RUN <