docs: note #3150 docker volume deletion required in upgrade (#3153)

See https://github.com/libretime/libretime/issues/3150
This commit is contained in:
Kyle Robbertze 2025-04-14 10:55:00 +01:00 committed by GitHub
parent fa079237db
commit ef4e8f7c96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,3 +27,16 @@ Please see the [changelog](https://github.com/libretime/libretime/blob/main/CHAN
## :bug: Bug fixes ## :bug: Bug fixes
Please see the [changelog](https://github.com/libretime/libretime/blob/main/CHANGELOG.md). Please see the [changelog](https://github.com/libretime/libretime/blob/main/CHANGELOG.md).
## :arrow_up: Upgrading
### Docker legacy volume
When deploying using Docker, the legacy volume is not updated automatically.
This results in fixes to the legacy service not being run by docker compose. The
`libretime_assets` volume must be deleted before the upgrade. The bug is tracked
in https://github.com/libretime/libretime/issues/3150.
```bash
docker volume rm libretime_assets
```