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
6. Verify Docker is installed by running a test container:
80
+
6. Verify that Docker is installed by running a test container:
81
81
82
82
```
83
83
docker run hello-world
@@ -87,11 +87,11 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
87
87
88
88
## Creating a Jellyfin user
89
89
90
-
1. Create a user called`jellyfin`:
90
+
1. Create a user named`jellyfin`:
91
91
```
92
92
adduser jellyfin
93
93
```
94
-
Enter the users' password, password confirmation, account information and confirm by pressing Enter.
94
+
Enter the users' password, password confirmation, account information and confirm by pressing `Enter`.
95
95
96
96
2. Enter the `jellyfin` user:
97
97
```
@@ -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 following step.
105
+
This command outputs two numbers: the user ID (e.g. `1001`) and the group ID (e.g. `10001`). Save these numbers as you will need them for the following steps.
106
106
107
107
## Deploying Jellyfin
108
108
@@ -130,8 +130,10 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
Customize the volumes: Replace `/path/to/your/media` with the actual path to your media files on the Instance. You can mount additional volumes if needed. Also, replace `your_instance_ip` with the public IP.
134
-
Replace `<USER ID>` and `<GROUP ID>` with the `jellyfin` user ID and group ID retrieved in the previous step.
133
+
Customize the volumes:
134
+
- Replace `/path/to/your/media` with the actual path to your media files on the Instance. You can mount additional volumes if needed.
135
+
- Replace `your_instance_ip` with the public IP.
136
+
- Replace `<USER ID>` and `<GROUP ID>` with the `jellyfin` user ID and group ID retrieved in the previous step.
135
137
136
138
<Messagetype="note">
137
139
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.
@@ -149,7 +151,10 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
149
151
## Accessing Jellyfin
150
152
151
153
1. Open a web browser on your local machine and navigate to `http://your_instance_ip:8096`, replacing `your_instance_ip` with the Instance's public IP.
152
-
2. Follow the on-screen setup wizard: Create an admin account, add your media libraries, and configure settings like language and metadata.
154
+
2. Follow the on-screen setup wizard:
155
+
- Create an admin account
156
+
- Add your media libraries, and
157
+
- Configure settings like language and metadata.
153
158
154
159
<Messagetype="tip">
155
160
Jellyfin listens on port `8096` by default. Ensure this port is open in your [Instance's security groups](/instances/how-to/use-security-groups/). For production, consider setting up HTTPS with a [reverse proxy like Nginx](/tutorials/nginx-reverse-proxy/).
0 commit comments