diff --git a/docs/getting-started/third-parties/truenas.mdx b/docs/getting-started/third-parties/truenas.mdx index b0e261cc..aa03e726 100644 --- a/docs/getting-started/third-parties/truenas.mdx +++ b/docs/getting-started/third-parties/truenas.mdx @@ -4,12 +4,6 @@ description: Install Seerr using TrueNAS sidebar_position: 4 --- # TrueNAS -:::danger -This method has not yet been updated for Seerr and is currently a work in progress. -You can follow the ongoing work on this issue https://github.com/truenas/apps/issues/3374. -::: - - + +## Installation + +Go to the 'Apps' menu, click the 'Discover Apps' button in the top right, search for 'Seerr' in the search bar, and install the app. diff --git a/docs/migration-guide.mdx b/docs/migration-guide.mdx index 2bc039eb..ff0ec0c6 100644 --- a/docs/migration-guide.mdx +++ b/docs/migration-guide.mdx @@ -210,7 +210,42 @@ See https://aur.archlinux.org/packages/seerr ### TrueNAS -Waiting for https://github.com/truenas/apps/issues/3374 +Refer to [Seerr TrueNAS Documentation](/getting-started/third-parties/truenas), all of our examples have been updated to reflect the below change. + + + + **This guide describes how to migrate from Host Path storage (not ixVolume).** + 1. Stop Jellyseerr/Overseerr + 2. Install Seerr and use the same Host Path storage that was used by Jellyseerr/Overseerr + 3. Start Seerr app + 4. Delete Jellyseerr/Overseerr app + + + **This guide describes how to migrate from ixVolume storage (not Host Path).** + 1. Stop Jellyseerr/Overseerr + 2. Create a dataset for Seerr + If your apps normally store data under something like: + ``` + /mnt/storage/ + ``` + then create a dataset named: + ``` + storage/seerr + ``` + resulting in: + ``` + /mnt/storage/seerr + ``` + 3. Copy ixVolume Data + Open System Settings → Shell, or SSH into your TrueNAS server as root and run : + ```bash + rsync -av /mnt/.ix-apps/app_mounts/jellyseerr/ /mnt/storage/seerr/ + ``` + 4. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example) + 5. Start Seerr app + 6. Delete Jellyseerr/Overseerr app + + ### Unraid @@ -277,4 +312,4 @@ For Jellyseerr users, use `/mnt/user/appdata/jellyseerr`. :::tip If you are using a reverse proxy (such as SWAG or Nginx Proxy Manager), update your proxy configuration to point to the new container name `seerr`. The default port remains `5055`. -::: \ No newline at end of file +::: diff --git a/gen-docs/docusaurus.config.ts b/gen-docs/docusaurus.config.ts index b5062411..94b7d882 100644 --- a/gen-docs/docusaurus.config.ts +++ b/gen-docs/docusaurus.config.ts @@ -16,7 +16,12 @@ const config: Config = { deploymentBranch: 'gh-pages', onBrokenLinks: 'throw', - onBrokenMarkdownLinks: 'warn', + + markdown: { + hooks: { + onBrokenMarkdownLinks: 'warn', + }, + }, i18n: { defaultLocale: 'en',