| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 8.0.0 source code.tar.gz | 2023-06-24 | 13.0 kB | |
| 8.0.0 source code.zip | 2023-06-24 | 25.4 kB | |
| README.md | 2023-06-24 | 1.2 kB | |
| Totals: 3 Items | 39.6 kB | 0 | |
Breaking changes
Due to the increasing number of models and folders required for the UIs and extensions, the folder structure have been changed, now it looks something like this:
:::sh
.
├── data
│ ├── .cache # cache for intermediary packages
│ ├── config # UI specific config
│ ├── embeddings # embeddings
│ └── models # all the models that were previously scattered around in /data
# this folder will be mounted replacing `auto`s model folder, so any extensions
# that write or read from this folder should see it
There is a migration script that would restructure the files for you, you can run it in bash or in WSL from the root of this repo:
:::sh
sudo ./.devscripts/migratev7tov8.sh
Notes
- Now automatically installs extension dependencies in auto if any are found, the
startup.shscript will still be executed AFTER the installation finishes. - Bump comfy to torch 2.0.1
Full Changelog: https://github.com/AbdBarho/stable-diffusion-webui-docker/compare/7.0.0...8.0.0