Linux & docker noob questions/review/suggestions.

  • Thread starter Thread starter Trex
  • Start date Start date
  • Replies Replies 32
  • Views Views 1,809
If you are not into those technical details, use Portainer to manage or create docker containers.
 
Same here, I run ubuntu on my i3nuc and rpi4b and everything in docker... im actually using this dns technitium now, initially i thought it was too technical for n00b like me, but actually seems almost more user-friendly than pihole to get configured and up and running quickly :-)
 
  • Like
Reactions: SVK
btw i missed some posts about "homepage"... what is this? is it some sort of dashboard? can you post the link to the "homepage" of "homepage" haha
 
Installed jellyfin docker but don't know how to add folder from other other drive in library, please help.

Also, guys, what is your preferred Linux distro for Homelab?
 
Last edited:
you need to add volume in docker compose file to point to where the files are located

if you havent mounted the other drive do it with mount command, edit fstab to make it persistent on reboot (google it youll understand)

for example if your media is in /home/user/movies you can do

-v /home/user/movies:/movies

now your content will be in /movies from the perspective of the jellyfin container.

i like debian, works fine.
 
Putting it here just for reference

docker run -d \
--name=jellyfin \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Etc/UTC \
-e JELLYFIN_PublishedServerUrl=192.168.0.4 #optional \
-p 8096:8096 \
-p 8920:8920 #optional \
-p 7359:7359/udp #optional \
-p 1900:1900/udp #optional \
-v /home/me/jellyfin:/config \
-v /home/me/sonarr/tvseries:/data/tvshows \
-v /home/me/radarr/movies:/data/movies \
--restart unless-stopped \
lscr.io/linuxserver/jellyfin:latest
 
Back