From ef4e8f7c9628dda1fcd12e51eff21744461c5218 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 14 Apr 2025 10:55:00 +0100 Subject: [PATCH] docs: note #3150 docker volume deletion required in upgrade (#3153) See https://github.com/libretime/libretime/issues/3150 --- docs/releases/4.3.0.mdx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/releases/4.3.0.mdx b/docs/releases/4.3.0.mdx index e59309e5b..cbac60af9 100644 --- a/docs/releases/4.3.0.mdx +++ b/docs/releases/4.3.0.mdx @@ -27,3 +27,16 @@ Please see the [changelog](https://github.com/libretime/libretime/blob/main/CHAN ## :bug: Bug fixes 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 +```