Skip to content
AbdBarho edited this page Dec 4, 2022 · 23 revisions

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

TLDR:

clone this repo and run:

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 | invoke | sygil | sygil-sl

if you don't know which ui to choose, invoke or auto are a good start.

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.

Detailed Steps

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):

  • auto: The most popular fork, many features with neat UI, Repo by AUTOMATIC1111
  • auto-cpu: for users without a GPU.
  • invoke: One of the earliest forks, stunning UI Repo by InvokeAI
  • sygil: Another great fork Repo by Sygil-Dev
  • sygil-sl: A second version of the above using streamlit (still in development, has bugs)

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 invoke 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