diff --git a/Usage.md b/Usage.md index acaf3a1..659653e 100644 --- a/Usage.md +++ b/Usage.md @@ -2,13 +2,13 @@ Assuming you [setup everything correctly](https://github.com/AbdBarho/stable-dif ```bash docker compose --profile [ui] up --build ``` -where `[ui]` is one of `hlky`, `auto`, `auto-cpu`, and `lstein`. +where `[ui]` is one of `hlky`, `auto`, `auto-cpu`. (Optional) If you want to customize the behaviour of the uis, you can create a `docker-compose.override.yml` and override the `CLI_ARGS` variable or whatever you want from the [main `docker-compose.yml` file](https://github.com/AbdBarho/stable-diffusion-webui-docker/blob/master/docker-compose.yml). Example: ```yml services: - automatic1111: + auto: environment: - CLI_ARGS=--lowvram ``` @@ -19,7 +19,7 @@ Possible configuration: By default: `--medvram` are given, which allow you to use this model on a 6GB GPU, you can also use `--lowvram` for lower end GPUs. [You can find the full list of cli arguments here.](https://github.com/AUTOMATIC1111/stable-diffusion-webui/blob/master/modules/shared.py) -This also has support for custom models, put the weights in the folder `cache/custom-models` (create if its not there), you can then change the model from the settings tab. There is also a `services/AUTOMATIC1111/config.json` file which contains additional config for the UI. +This also has support for custom models, put the weights in the folder `data/StableDiffusion`, you can then change the model from the settings tab. There is also a `services/AUTOMATIC1111/config.json` file which contains additional config for the UI. ## `auto-cpu` CPU instance of the above, requires `--no-half --precision full` for it to run, which are already given