docs(truenas): update install/migration guide (#2491)
Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
This commit is contained in:
@@ -4,12 +4,6 @@ description: Install Seerr using TrueNAS
|
|||||||
sidebar_position: 4
|
sidebar_position: 4
|
||||||
---
|
---
|
||||||
# TrueNAS
|
# 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.
|
|
||||||
:::
|
|
||||||
|
|
||||||
<!--
|
|
||||||
:::warning
|
:::warning
|
||||||
Third-party installation methods are maintained by the community. The Seerr team is not responsible for these packages.
|
Third-party installation methods are maintained by the community. The Seerr team is not responsible for these packages.
|
||||||
:::
|
:::
|
||||||
@@ -17,4 +11,7 @@ Third-party installation methods are maintained by the community. The Seerr team
|
|||||||
:::warning
|
:::warning
|
||||||
This method is not recommended for most users. It is intended for advanced users who are using TrueNAS distribution.
|
This method is not recommended for most users. It is intended for advanced users who are using TrueNAS distribution.
|
||||||
:::
|
:::
|
||||||
-->
|
|
||||||
|
## 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.
|
||||||
|
|||||||
@@ -210,7 +210,42 @@ See https://aur.archlinux.org/packages/seerr
|
|||||||
|
|
||||||
### TrueNAS
|
### 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.
|
||||||
|
|
||||||
|
<Tabs groupId="truenas-migration" queryString>
|
||||||
|
<TabItem value="hostpath" label="Host Path">
|
||||||
|
**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
|
||||||
|
</TabItem>
|
||||||
|
<TabItem value="ixvolume" label="ixVolume">
|
||||||
|
**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/<app-name>
|
||||||
|
```
|
||||||
|
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
|
||||||
|
</TabItem>
|
||||||
|
</Tabs>
|
||||||
|
|
||||||
### Unraid
|
### Unraid
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,12 @@ const config: Config = {
|
|||||||
deploymentBranch: 'gh-pages',
|
deploymentBranch: 'gh-pages',
|
||||||
|
|
||||||
onBrokenLinks: 'throw',
|
onBrokenLinks: 'throw',
|
||||||
|
|
||||||
|
markdown: {
|
||||||
|
hooks: {
|
||||||
onBrokenMarkdownLinks: 'warn',
|
onBrokenMarkdownLinks: 'warn',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
i18n: {
|
i18n: {
|
||||||
defaultLocale: 'en',
|
defaultLocale: 'en',
|
||||||
|
|||||||
Reference in New Issue
Block a user