From c6a3fdfb42f171f9c1f5674b10f73c9a3859fe19 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Feb 2026 13:40:24 +0000 Subject: [PATCH 2/3] docs(seerr): add migration instructions from Overseerr, Jellyseerr, and Ombi Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com> --- seerr/README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/seerr/README.md b/seerr/README.md index 52cab2845..fe5c5a018 100644 --- a/seerr/README.md +++ b/seerr/README.md @@ -38,6 +38,53 @@ PUID: 0 TZ: Europe/London ``` +## Migration + +### From Overseerr + +Seerr is compatible with Overseerr's data format. To migrate your existing configuration: + +1. Stop the **Overseerr** add-on. +2. Install and start the **Seerr** add-on once to initialize its config directory, then stop it. +3. Copy the Overseerr config files to the Seerr config directory using the SSH & Web Terminal add-on or a similar tool: + + ```bash + cp -r /homeassistant/addons_config/overseerr/. /addon_configs/db21ed7f_seerr/ + ``` + + > **Note:** If you customised the `CONFIG_LOCATION` option in the Overseerr add-on, replace `/homeassistant/addons_config/overseerr` with the path you set. + +4. Start the **Seerr** add-on. Your existing settings, users, and requests will be preserved. + +--- + +### From Jellyseerr + +Seerr is compatible with Jellyseerr's data format. To migrate your existing configuration: + +1. Stop the **Jellyseerr** add-on. +2. Install and start the **Seerr** add-on once to initialize its config directory, then stop it. +3. Copy the Jellyseerr config files to the Seerr config directory using the SSH & Web Terminal add-on or a similar tool: + + ```bash + cp -r /homeassistant/addons_config/jellyseerr/. /addon_configs/db21ed7f_seerr/ + ``` + +4. Start the **Seerr** add-on. Your existing settings, users, and requests will be preserved. + +--- + +### From Ombi + +Ombi uses a different data format and there is no automated migration path to Seerr. You will need to configure Seerr from scratch: + +1. Note down your Ombi configuration (media servers, users, notification settings, etc.). +2. Stop the **Ombi** add-on. +3. Install and start the **Seerr** add-on. +4. Use the Seerr web UI to reconnect your media server(s) and reconfigure your preferences. + +--- + ## Support If you find a bug, open an issue in this repository. From d8494cb5d3c437249fae94cb8caa9f7d87271cf1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 20 Feb 2026 13:56:39 +0000 Subject: [PATCH 3/3] docs(seerr): use Filebrowser addon for migration instructions Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com> --- seerr/README.md | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/seerr/README.md b/seerr/README.md index fe5c5a018..6271b33b2 100644 --- a/seerr/README.md +++ b/seerr/README.md @@ -45,16 +45,10 @@ TZ: Europe/London Seerr is compatible with Overseerr's data format. To migrate your existing configuration: 1. Stop the **Overseerr** add-on. -2. Install and start the **Seerr** add-on once to initialize its config directory, then stop it. -3. Copy the Overseerr config files to the Seerr config directory using the SSH & Web Terminal add-on or a similar tool: - - ```bash - cp -r /homeassistant/addons_config/overseerr/. /addon_configs/db21ed7f_seerr/ - ``` - - > **Note:** If you customised the `CONFIG_LOCATION` option in the Overseerr add-on, replace `/homeassistant/addons_config/overseerr` with the path you set. - -4. Start the **Seerr** add-on. Your existing settings, users, and requests will be preserved. +2. Install and start the **Seerr** add-on once to create its config directory (`/addon_configs/db21ed7f_seerr/`), then stop it. +3. Open the **[Filebrowser](https://github.com/alexbelgium/hassio-addons/tree/master/filebrowser)** add-on (or any file manager with access to `/addon_configs/`). +4. Navigate to `/addon_configs/db21ed7f_overseerr/` and copy all files into `/addon_configs/db21ed7f_seerr/`. +5. Start the **Seerr** add-on. Your existing settings, users, and requests will be preserved. --- @@ -63,14 +57,10 @@ Seerr is compatible with Overseerr's data format. To migrate your existing confi Seerr is compatible with Jellyseerr's data format. To migrate your existing configuration: 1. Stop the **Jellyseerr** add-on. -2. Install and start the **Seerr** add-on once to initialize its config directory, then stop it. -3. Copy the Jellyseerr config files to the Seerr config directory using the SSH & Web Terminal add-on or a similar tool: - - ```bash - cp -r /homeassistant/addons_config/jellyseerr/. /addon_configs/db21ed7f_seerr/ - ``` - -4. Start the **Seerr** add-on. Your existing settings, users, and requests will be preserved. +2. Install and start the **Seerr** add-on once to create its config directory (`/addon_configs/db21ed7f_seerr/`), then stop it. +3. Open the **[Filebrowser](https://github.com/alexbelgium/hassio-addons/tree/master/filebrowser)** add-on (or any file manager with access to `/addon_configs/`). +4. Navigate to `/addon_configs/db21ed7f_jellyseerr/` and copy all files into `/addon_configs/db21ed7f_seerr/`. +5. Start the **Seerr** add-on. Your existing settings, users, and requests will be preserved. ---