Skip to content
AbdBarho edited this page Sep 11, 2022 · 23 revisions

Make sure you have the latest version of docker installed

Automatic setup

Download this repo and run:

docker compose --profile download up --build

This will download all of the required models / files, and validate their integrity.

Next, choose which UI you want to run:

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/

Note: the first start will take some time since other models will be downloaded, these will be cached in the cache folder, so next runs are faster.

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

Manual Download

Download the models:

Put all of the downloaded files in the cache/models folder (create the folder if not there), it should look something like this:

cache/models/
├── model.ckpt
├── GFPGANv1.3.pth
├── RealESRGAN_x4plus.pth
├── RealESRGAN_x4plus_anime_6B.pth
├── LDSR.ckpt
└── LDSR.yaml
Clone this wiki locally