Skip to content
AbdBarho edited this page Nov 2, 2022 · 23 revisions

Make sure you have the latest version of docker and docker compose installed

TLDR:

docker compose --profile download up --build
# wait until its done, then:
docker compose --profile [ui] up --build
# where [ui] is one of: auto | auto-cpu | hlky | lstein

Then access from http://localhost:7860/

Unfortunately, AMD GPUs #63 and Mac #35 are not supported, contributions to add support are very welcome!!!!!!!!!!

If you face any problems, check the FAQ page, or create a new issue.

Info

Download this repo and run:

docker compose --profile download up --build

This will download all of the required models / files, and validate their integrity. You only have to download the data once (regardless of the UI). There are roughly 12GB of data to be downloaded.

Next, choose which UI you want to run (you can easily change later):

  • hlky: The most popular fork, Repo by hlky
  • auto: Another great fork, many features with neat UI, Repo by AUTOMATIC1111
  • auto-cpu: for users without a GPU.
  • lstein: One of the earliest forks, the UI is simple but has a lot of potential, Repo by lstein

After the download is done, you can run the UI using:

docker compose --profile [ui] up --build
# for example:
# docker compose --profile auto up --build
# or
# docker compose --profile hlky up --build

Will start the app on http://localhost:7860/. Feel free to try out the different UIs.

Note: the first start will take some time since other models will be downloaded, these will be cached in the data folder, so next runs are faster. First time setup might take between 15 minutes and 1 hour depending on your internet connection, other times are much faster, roughly 20 seconds.

Clone this wiki locally