79 points

I rate it a 10.10.0 out of 10.

permalink
report
reply
55 points

Jellyfin has been rock solid for me, especially since the move to .NET 8. Looking forward to this release.

permalink
report
reply
23 points

I am loving the new release cadence!

permalink
report
reply
20 points

I see Jellyfin, I insta upvote

permalink
report
reply
17 points

I just setup Jellyfin on docker the other day for the first time.

It just occurred to me that I don’t know how to update docker.

Any advice?

permalink
report
reply
25 points
*

Checkout watchtower! Auto update your containers. Don’t forget to set WATCHTOWER_CLEANUP to true, or your disk will be filled with old images.

permalink
report
parent
reply
4 points

I couldn’t figure out watchtower. I just made a script to pull and restart and scheduled it to run daily at midnight.

permalink
report
parent
reply
2 points

Oh this looks great! Thanks for the suggestion

permalink
report
parent
reply
2 points

Thanks! I’ll check that out, I’m really loving how quick and easy docker has been so far.

permalink
report
parent
reply
13 points
*

Did you use docker compose file or just run a command to start the container?

Edit: I always use compose files. For that you can do the following:

docker compose pull
docker compose down
docker compose up -d

You don’t technically need the stop, but I’ve found once or twice in the past where it was good to stop because of image dependencies that I forgot to put in my compose.

For running a command directly I found this website that seems to summarize it pretty well I think:

https://www.cherryservers.com/blog/how-to-update-docker-image

permalink
report
parent
reply
3 points

Yes, I used docker compose. Do I need to do anything to clean up with this method?

permalink
report
parent
reply
3 points
*

Now that you mention it, I always do a

docker system prune -f

This will clean up old images that are no longer used. I setup an alias command in Linux to do all of those commands.

I just named it docker_update and saved it in my ~/.bashrc

permalink
report
parent
reply
8 points

You could use a systemd unit file:

[Unit]
Description=docker_compose_systemd-sonarr
After=docker.service 
Requires=docker.service

[Service]
TimeoutStartSec=0

WorkingDirectory=/var/lib/sonarr

ExecStartPre=-/usr/bin/docker compose kill --remove-orphans
ExecStartPre=-/usr/bin/docker compose down --remove-orphans
ExecStartPre=-/usr/bin/docker compose rm -f -s -v
ExecStartPre=-/usr/bin/docker compose pull
ExecStart=/usr/bin/docker compose up

Restart=always
RestartSec=30

[Install]
WantedBy=multi-user.target

You’d place your compose file in the working dir /var/lib/sonarr. Depending on what tag you’ve set for the image in the compose file, it would be autoupdated, or stay fixed. E.g. lscr.io/linuxserver/sonarr:latest would get autoupdated whereas lscr.io/linuxserver/sonarr:4.0.10 would keep the container at version 4.0.10. If you want to update from 4.0.10, you’d have to change it in the compose file.

permalink
report
parent
reply
4 points

no need for docker compose down. pull && up is enough

permalink
report
parent
reply
4 points

If you set up using compose and don’t have the version pinned:

dockee compose down && docker compose pull jellyfin && docker compose up -d

permalink
report
parent
reply
5 points

What about if I am using Podman and have the container as a systemd unit file?

permalink
report
parent
reply
3 points

Podman supports auto updating natively by setting a label.
I use systemd service files for running containers, but you can add the same label on the command line or in quadlet files.

https://wiki.exu.li/linux/podman#auto-update-container

permalink
report
parent
reply
3 points

Also depends on how you specified image in the docker. If it has no version or latest as version it will update otherwise it may be fixed

permalink
report
parent
reply

Linux

!linux@lemmy.ml

Create post

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

Community stats

  • 7.8K

    Monthly active users

  • 6.5K

    Posts

  • 179K

    Comments