Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update container.md #1207

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/general/installation/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ docker run -d \
jellyfin/jellyfin
```

:::note

Replace `uid:gid` if you want to run jellyfin as a specific user/group (must exist in the host `/etc/passwd` file). Exclude the `--user` argument entirely if you want to use the default user.
Copy link
Contributor

@Shadowghost Shadowghost Dec 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think must exist in the host /etc/passwd file is correct. You can input whatever you want.


:::

Bind Mounts are needed to pass folders from the host OS to the container OS whereas volumes are maintained by Docker and can be considered easier to backup and control by external programs.
For a simple setup, it's considered easier to use Bind Mounts instead of volumes.
Multiple media libraries can be bind mounted if needed:
Expand Down