14c4b36aff
### Update versions
- auto:
3f417566b0
### Breaking changes:
* renamed `automatic-1111` service to `auto`
* the `cache` folder is now deprecated, replaced with `data` (see
migration guide below)
* `embeddings` folder has been moved to `data/embeddings`
* use GFPGAN 1.4
### Migration Guide
Note: in theory, running the command
```
docker compose --profile download up --build
```
is all you need to use the new version, however, this means you will
also have to download everything again. A new script is available under
`scripts/migratev1tov2.sh` that will copy models to the new structure
and should get you most of the way, run
```bash
./scripts/migratev1tov2.sh
```
or you can manually inspect the script and copy the files
After that, run
```
docker compose --profile download up --build
```
to validate everything.
24 lines
705 B
Bash
Executable File
24 lines
705 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -Eeuo pipefail
|
|
|
|
mkdir -p /data/.cache /data/StableDiffusion /data/Codeformer /data/GFPGAN /data/ESRGAN /data/BSRGAN /data/RealESRGAN /data/SwinIR /data/LDSR
|
|
|
|
cat <<EOF
|
|
By using this software, you agree to the following licenses:
|
|
https://github.com/CompVis/stable-diffusion/blob/main/LICENSE
|
|
https://github.com/TencentARC/GFPGAN/blob/master/LICENSE
|
|
https://github.com/xinntao/Real-ESRGAN/blob/master/LICENSE
|
|
EOF
|
|
|
|
echo "Downloading, this might take a while..."
|
|
|
|
aria2c --input-file /docker/links.txt --dir /data --continue
|
|
|
|
echo "Checking SHAs..."
|
|
|
|
parallel --will-cite -a /docker/checksums.sha256 "echo -n {} | sha256sum -c"
|
|
|
|
# fix potential permissions
|
|
chmod -R 777 /data /output
|