Skip to content

Commit 97411b8

Browse files
bene2k1nerda-codes
andauthored
Apply suggestions from code review
Co-authored-by: Néda <[email protected]>
1 parent 9b9920b commit 97411b8

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

tutorials/deploying-jellyfin-docker/index.mdx

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
2727

2828
1. Open a terminal on your local machine.
2929

30-
2. Connect via SSH using the command:
30+
2. Connect via SSH using the following command:
3131

3232
```
3333
ssh root@your_instance_ip
@@ -77,7 +77,7 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
7777
apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin acl -y
7878
```
7979

80-
6. Verify Docker is installed by running a test container:
80+
6. Verify that Docker is installed by running a test container:
8181

8282
```
8383
docker run hello-world
@@ -87,11 +87,11 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
8787

8888
## Creating a Jellyfin user
8989

90-
1. Create a user called `jellyfin`:
90+
1. Create a user named `jellyfin`:
9191
```
9292
adduser jellyfin
9393
```
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`.
9595

9696
2. Enter the `jellyfin` user:
9797
```
@@ -102,7 +102,7 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
102102
```
103103
id -u && id -g
104104
```
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.
106106

107107
## Deploying Jellyfin
108108

@@ -130,8 +130,10 @@ We will use an Ubuntu-based Instance and the official Jellyfin Docker container.
130130
- JELLYFIN_PublishedServerUrl=http://your_instance_ip:8096
131131
```
132132

133-
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.
135137

136138
<Message type="note">
137139
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.
149151
## Accessing Jellyfin
150152

151153
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.
153158

154159
<Message type="tip">
155160
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

Comments
 (0)