You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tutorials/deploying-jellyfin-docker/index.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
47
47
apt update && apt upgrade -y
48
48
```
49
49
50
-
2. Install the required prerequisites for adding the Docker repository:
50
+
2. Install the prerequisites for adding the Docker repository:
51
51
52
52
```
53
53
apt install ca-certificates curl -y
@@ -102,7 +102,7 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
102
102
```
103
103
id -u && id -g
104
104
```
105
-
This command outputs two numbers, the User ID (e.g. `1001`) and the group ID (e.g. `10001`). Note these numbers for the follwoing step.
105
+
This command outputs two numbers, the User ID (e.g. `1001`) and the group ID (e.g. `10001`). Note these numbers for the following step.
106
106
107
107
## Deploying Jellyfin
108
108
@@ -134,7 +134,7 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
134
134
Replace `<USER ID>` and `<GROUP ID>` with the `jellyfin` user ID and group ID retrieved in the previous step.
135
135
136
136
<Messagetype="note">
137
-
Running as a non-root user is recommended; the `user` line specifies the ID of the `jellyfin` user.. Ensure the mounted directories have appropriate permissions.
137
+
Running as a non-root user is recommended; the `user` line specifies the ID of the `jellyfin` user. Ensure the mounted directories have appropriate permissions.
138
138
Ensure the Jellyfin user has write and read permission to the `/config` and `/cache` folders by setting permissions: `setfacl -m u:jellyfin:rwx config` and `setfacl -m u:jellyfin:rwx cache`.
0 commit comments