DEV Community

awsmfoss
awsmfoss

Posted on β€’ Originally published at awsmfoss.com

FOSS Spotlight: πŸ“Ί Jellyfin

Jellyfin is a well known self-hosted media system and server. It looks great, manages your playlists and makes your media available for watching, listening and reading on the go.

Jellyfin (code) makes self-hosted media serving easy. It looks great and manages and serves your media playlist:

Screenshot of Jellyfin

Jellyfin is a favorite of self-hosters and people who people with large media libraries that they want to make available on the go.

Jellyfin is available in many different languages and runs on most operating systems (especially when they're equipped with docker) quite easily. There's also extensive documentation to get you started using it.

Running Jellyfin

Jellyfin is quite docker friendly (the container documentation is where you should start), with an official image ready for use:

docker run -d \
   --name jellyfin \
   --user uid:gid \
   --net=host \
   --volume /path/to/config:/config \ # Alternatively --volume jellyfin-config:/config
   --volume /path/to/cache:/cache \ # Alternatively --volume jellyfin-cache:/cache
   --mount type=bind,source=/path/to/media,target=/media \
   --restart=unless-stopped \
   jellyfin/jellyfin
Enter fullscreen mode Exit fullscreen mode

Heroku

Simplify your DevOps and maximize your time.

Since 2007, Heroku has been the go-to platform for developers as it monitors uptime, performance, and infrastructure concerns, allowing you to focus on writing code.

Learn More

Top comments (0)

Sentry image

See why 4M developers consider Sentry, β€œnot bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay