this post was submitted on 16 Jun 2025
160 points (94.4% liked)
Linux
55456 readers
664 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Docker is a virtualization platform, similar to setting out a Virtual Machine but a lot less resource intense. You need to:
That's it, docker setup done, now you need to write a compose file, i.e. something that tells docker what do you want to run, usually you get a working example on any project website, and linuxserver.io is a great site for them too, for example for Jellyfin can be found here: https://docs.linuxserver.io/images/docker-jellyfin/
Just create a folder, create a file called
compose.yaml
there and put that content in it, now rundocker compose up -d
and congratulations you have a working Jellyfin server.With time you'll learn what the compose file is doing, for example the ports map ports from the docker to your machine, volumes does the same, so for example the example has
/path/to/jellyfin/library:/config
if instead you write./config:/config
a folder called config will be created on the same folder the compose.yaml file is and inside the docker it will be mounted as/config
which is where Jellyfin will look for configurations. In the same manner you can add/home/myuser/Movies:/Movies
and inside docker you will be able to see the contents of/home/myuser/Movies
when scanning the/Movies
folder.