docs: Updates the Unraid documentation for alternative way to deploy Seerr using correct file system permissions and prevent access issues#2471
Conversation
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughReworked Unraid documentation: introduced a tabbed Recommended vs Alternative installation flow, clarified permission options (chown 1000:1000 or use Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Comment |
There was a problem hiding this comment.
🤖 Fix all issues with AI agents
Verify each finding against the current code and only fix it if needed.
In `@docs/getting-started/third-parties/unraid.mdx`:
- Around line 79-82: Bold the second occurrence of "Extra Parameters" to match
the first (make "Extra Parameters" bold wherever referenced) and insert a blank
line between the paragraph describing the `--init` flag and the paragraph
describing the `--user 99:100` flag so the `--init` and `--user` explanations
are separated for consistent formatting; update the block that mentions
`--init`, `--user 99:100`, and "Extra Parameters" accordingly.
🧹 Nitpick comments (1)
🤖 Fix all nitpicks with AI agents
Verify each finding against the current code and only fix it if needed. In `@docs/getting-started/third-parties/unraid.mdx`: - Around line 79-82: Bold the second occurrence of "Extra Parameters" to match the first (make "Extra Parameters" bold wherever referenced) and insert a blank line between the paragraph describing the `--init` flag and the paragraph describing the `--user 99:100` flag so the `--init` and `--user` explanations are separated for consistent formatting; update the block that mentions `--init`, `--user 99:100`, and "Extra Parameters" accordingly.docs/getting-started/third-parties/unraid.mdx (1)
79-82: Minor formatting inconsistency: bold styling differs between lines.Line 80 uses
**Extra Parameters**(bold), but line 81 uses plainExtra Parameters. For consistency, consider bolding both occurrences.Additionally, inserting a blank line between the
--initand--userexplanations would improve readability and ensure consistent paragraph separation across different Markdown renderers.📝 Suggested formatting fix
:::info -The `--init` flag in **Extra Parameters** is required. Seerr does not include its own init process, so `--init` ensures proper signal handling and clean container shutdowns. -The `--user 99:100` flag in Extra Parameters ensures the container runs with the correct permissions. In Unraid, the default user account is nobody (ID 99) and the default group is users (ID 100). Using this flag prevents "Permission Denied" errors when the container tries to read or write to your shares. +The `--init` flag in **Extra Parameters** is required. Seerr does not include its own init process, so `--init` ensures proper signal handling and clean container shutdowns. + +The `--user 99:100` flag in **Extra Parameters** ensures the container runs with the correct permissions. In Unraid, the default user account is nobody (ID 99) and the default group is users (ID 100). Using this flag prevents "Permission Denied" errors when the container tries to read or write to your shares. :::🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@docs/getting-started/third-parties/unraid.mdx` around lines 79 - 82, Bold the second occurrence of "Extra Parameters" to match the first (make "Extra Parameters" bold wherever referenced) and insert a blank line between the paragraph describing the `--init` flag and the paragraph describing the `--user 99:100` flag so the `--init` and `--user` explanations are separated for consistent formatting; update the block that mentions `--init`, `--user 99:100`, and "Extra Parameters" accordingly.
|
#2470 literally explains the proper method to do this on unraid though. |
Well 1000:1000 isn't right. Should be 99:100 on the file folder |
It is correct. There are multiple ways to do this. Your way is an ALTERNATIVE way. But that pr is absolutely correct. |
|
Accidentally closed. Please rework this pr stating doing this as an alternative method. |
|
This pull request has merge conflicts. Please resolve the conflicts so the PR can be successfully reviewed and merged. |
fallenbagel
left a comment
There was a problem hiding this comment.
Please make the requested changes.
will do. |
There was a problem hiding this comment.
Actionable comments posted: 2
🧹 Nitpick comments (1)
docs/getting-started/third-parties/unraid.mdx (1)
88-89: Good explanation, but adjust if presenting as alternative.The explanation of
--initand--user 99:100is clear and accurate. If the documentation is restructured per maintainer feedback to present both methods, consider updating this block to explain:
--initis always required--user 99:100is needed only if you chose the 99:100 ownership approach- Without
--user, the container runs as 1000:1000 (matching Method 1's chown)This would help users understand which flags apply to their chosen method.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@docs/getting-started/third-parties/unraid.mdx` around lines 88 - 89, Update the paragraph to present the flags as conditional guidance: state that the `--init` flag is always required for proper signal handling and clean shutdown, explain that `--user 99:100` is only required if the reader chooses the "99:100 ownership" approach, and clarify that if `--user` is omitted the container will run as 1000:1000 (matching the chown behavior described in Method 1); keep references to `--init`, `--user 99:100`, and "Method 1" so readers can map flags to the chosen ownership method.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Line 50: Update the Extra Parameters row to present both supported methods:
show Method 1 as "`--init` only (use when your host uses chown 1000:1000)" and
Method 2 as "`--init --user 99:100` (use when your host uses chown 99:100)`", so
readers can pick based on their Unraid setup; mention the corresponding chown
examples (`chown 1000:1000` and `chown 99:100`) alongside the flags for clarity.
- Line 36: Update the documentation to present the two chown approaches as
alternatives rather than replacing one with the other: keep the existing "chown
-R 1000:1000 /mnt/user/appdata/seerr" as Method 1 (container internal UID) and
add Method 2 showing "chown -R 99:100 /mnt/user/appdata/seerr" with an
explanatory note to use "--user 99:100" for Unraid's nobody:users mapping;
ensure both commands are shown with brief one-line context explaining when to
use each.
---
Nitpick comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Around line 88-89: Update the paragraph to present the flags as conditional
guidance: state that the `--init` flag is always required for proper signal
handling and clean shutdown, explain that `--user 99:100` is only required if
the reader chooses the "99:100 ownership" approach, and clarify that if `--user`
is omitted the container will run as 1000:1000 (matching the chown behavior
described in Method 1); keep references to `--init`, `--user 99:100`, and
"Method 1" so readers can map flags to the chosen ownership method.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Line 54: Update the misspelled word "Explaination" to "Explanation" in the
docs text shown in unraid.mdx (the line that currently reads "Explaination : Do
not change host ownership..."); search the file for any other occurrences of
"Explaination" and correct them to "Explanation" to keep the document
consistent.
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (1)
docs/getting-started/third-parties/unraid.mdx (1)
56-59: Add blank line after closing the warning block.A blank line after
:::and before the### 2.heading improves readability and ensures consistent rendering across MDX parsers.📝 Proposed fix
:::warning Do not use both approaches at the same time, either change the host folder ownership to `1000:1000` or run the container with `--user 99:100`. Mixing both can create confusing ownership and permission states. ::: + ### 2. Add the Docker container🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@docs/getting-started/third-parties/unraid.mdx` around lines 56 - 59, Add a single blank line after the closing warning block (the line with ":::") so there is an empty line between that block and the subsequent heading "### 2. Add the Docker container"; update the MDX near the ':::warning' block to ensure a blank line exists immediately before the "### 2. Add the Docker container" heading to improve readability and parser consistency.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Around line 48-54: Fix the contradictory wording and punctuation in the Unraid
note: remove the extra space before the colon so "Explanation:" is correctly
formatted, and reword the sentence that follows the chown example to clarify
intent — state that after adjusting host ownership with "chown -R 99:100
/mnt/user/appdata/seerr" you should then run the container with Unraid's
nobody:users via the Docker param "--user 99:100" to ensure the container
process uses Unraid's default UID/GID and keeps files accessible via SMB and the
Unraid WebGUI (replace the current "Do not change host ownership" phrasing with
this clearer description).
---
Nitpick comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Around line 56-59: Add a single blank line after the closing warning block
(the line with ":::") so there is an empty line between that block and the
subsequent heading "### 2. Add the Docker container"; update the MDX near the
':::warning' block to ensure a blank line exists immediately before the "### 2.
Add the Docker container" heading to improve readability and parser consistency.
M0NsTeRRR
left a comment
There was a problem hiding this comment.
Hello,
@fallenbagel asked to update the doc by adding an alternative method not removing an existing one.
You can do it by using tabs like here https://github.com/seerr-team/seerr/blob/develop/docs/migration-guide.mdx?plain=1#L66
i didnt remove, I added after his comment. |
I would suggest using tabs. So it's better ux |
There was a problem hiding this comment.
Actionable comments posted: 2
🧹 Nitpick comments (1)
docs/getting-started/third-parties/unraid.mdx (1)
43-49: Consider adding a warning about not mixing approaches.Per the PR objectives, users should be warned not to combine both approaches (e.g., running
chown -R 1000:1000on the host while using--user 99:100in the container). This combination would cause permission mismatches.Consider adding a warning admonition before or after the tabs:
📝 Suggested addition
:::caution Do not mix approaches. If you use `chown -R 1000:1000`, do not add `--user 99:100` to Extra Parameters (and vice versa). Mixing these will cause permission mismatches and access errors. :::🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@docs/getting-started/third-parties/unraid.mdx` around lines 43 - 49, Add a clear caution admonition that warns users not to mix the two permission approaches (changing host ownership with the chown command shown in the "Recommended" TabItem and setting container user via Extra Parameters like `--user 99:100`); place this admonition immediately before or after the <Tabs groupId="unraid-permissions"> block (or adjacent to the <TabItem value="recommended"> content) so it is visible alongside the chown example and explicitly states that using both will cause permission mismatches and access errors.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Around line 55-64: The markdown table has inconsistent pipe delimiters: add a
trailing '|' to the header row and remove the duplicate trailing pipes from the
rows for WebUI, Network Type, and Privileged so every row uses a single '|' at
the end; specifically update the header (the row with "Field | Value") to end
with '|' and fix the rows identified by the cell labels "**WebUI**", "**Network
Type**", and "**Privileged**" to use a single trailing '|' to ensure consistent
markdown table rendering.
- Around line 115-124: The markdown table has inconsistent pipe usage causing
misaligned columns; edit the table in unraid.mdx so every row uses the same
three-column pipe pattern (| Field | Value |) and remove the stray double pipes
from the WebUI, Network Type, and Privileged rows (the lines containing
`**WebUI**`, `**Network Type**`, and `**Privileged**`), and ensure other rows
like `**Name**`, `**Repository**`, `**Registry URL**`, `**Icon URL**`, and
`**Extra Parameters**` follow the same consistent pipe layout.
---
Nitpick comments:
In `@docs/getting-started/third-parties/unraid.mdx`:
- Around line 43-49: Add a clear caution admonition that warns users not to mix
the two permission approaches (changing host ownership with the chown command
shown in the "Recommended" TabItem and setting container user via Extra
Parameters like `--user 99:100`); place this admonition immediately before or
after the <Tabs groupId="unraid-permissions"> block (or adjacent to the <TabItem
value="recommended"> content) so it is visible alongside the chown example and
explicitly states that using both will cause permission mismatches and access
errors.
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Description
This PR updates the Unraid documentation for Seerr to clarify supported permission-handling options and avoid access issues.
chown -R 1000:1000 /mnt/user/appdata/seerrnobody:usersaccount by adding the extra Docker parameter--user 99:100(avoids changing host ownership)chown -R 1000:1000on the host with--user 99:100in the container to prevent confusing ownership and permission states.This change ensures files created by the container are handled predictably and prevents "Permission Denied" errors when managing files via SMB or the Unraid WebGUI.
How Has This Been Tested?
--user 99:100allows the container to write to/mnt/user/appdata/seerrand that the resulting files are accessible and manageable by the Unraid host system without permission conflicts.Screenshots / Logs (if applicable)
Refer to the "Files changed" tab for the updated documentation layout.
Checklist:
pnpm buildpnpm i18n:extractSummary by CodeRabbit