Skip to content

Commit dc1734d

Browse files
authored
docs(truenas): update install/migration guide (#2491)
Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
1 parent 06e5eb0 commit dc1734d

3 files changed

Lines changed: 47 additions & 10 deletions

File tree

docs/getting-started/third-parties/truenas.mdx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,14 @@ description: Install Seerr using TrueNAS
44
sidebar_position: 4
55
---
66
# TrueNAS
7-
:::danger
8-
This method has not yet been updated for Seerr and is currently a work in progress.
9-
You can follow the ongoing work on this issue https://github.com/truenas/apps/issues/3374.
10-
:::
11-
12-
<!--
137
:::warning
148
Third-party installation methods are maintained by the community. The Seerr team is not responsible for these packages.
159
:::
1610

1711
:::warning
1812
This method is not recommended for most users. It is intended for advanced users who are using TrueNAS distribution.
1913
:::
20-
-->
14+
15+
## Installation
16+
17+
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.

docs/migration-guide.mdx

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,42 @@ See https://aur.archlinux.org/packages/seerr
210210
211211
### TrueNAS
212212
213-
Waiting for https://github.com/truenas/apps/issues/3374
213+
Refer to [Seerr TrueNAS Documentation](/getting-started/third-parties/truenas), all of our examples have been updated to reflect the below change.
214+
215+
<Tabs groupId="truenas-migration" queryString>
216+
<TabItem value="hostpath" label="Host Path">
217+
**This guide describes how to migrate from Host Path storage (not ixVolume).**
218+
1. Stop Jellyseerr/Overseerr
219+
2. Install Seerr and use the same Host Path storage that was used by Jellyseerr/Overseerr
220+
3. Start Seerr app
221+
4. Delete Jellyseerr/Overseerr app
222+
</TabItem>
223+
<TabItem value="ixvolume" label="ixVolume">
224+
**This guide describes how to migrate from ixVolume storage (not Host Path).**
225+
1. Stop Jellyseerr/Overseerr
226+
2. Create a dataset for Seerr
227+
If your apps normally store data under something like:
228+
```
229+
/mnt/storage/<app-name>
230+
```
231+
then create a dataset named:
232+
```
233+
storage/seerr
234+
```
235+
resulting in:
236+
```
237+
/mnt/storage/seerr
238+
```
239+
3. Copy ixVolume Data
240+
Open System Settings → Shell, or SSH into your TrueNAS server as root and run :
241+
```bash
242+
rsync -av /mnt/.ix-apps/app_mounts/jellyseerr/ /mnt/storage/seerr/
243+
```
244+
4. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example)
245+
5. Start Seerr app
246+
6. Delete Jellyseerr/Overseerr app
247+
</TabItem>
248+
</Tabs>
214249

215250
### Unraid
216251

@@ -277,4 +312,4 @@ For Jellyseerr users, use `/mnt/user/appdata/jellyseerr`.
277312

278313
:::tip
279314
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`.
280-
:::
315+
:::

gen-docs/docusaurus.config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ const config: Config = {
1616
deploymentBranch: 'gh-pages',
1717

1818
onBrokenLinks: 'throw',
19-
onBrokenMarkdownLinks: 'warn',
19+
20+
markdown: {
21+
hooks: {
22+
onBrokenMarkdownLinks: 'warn',
23+
},
24+
},
2025

2126
i18n: {
2227
defaultLocale: 'en',

0 commit comments

Comments
 (0)