• @M600@lemmy.world
    link
    fedilink
    1114 hours ago

    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?

    • @Tenkard@lemmy.ml
      link
      fedilink
      25 hours ago

      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

    • Avid Amoeba
      link
      fedilink
      77 hours ago

      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.

      • @butter@midwest.social
        link
        fedilink
        English
        122 minutes ago

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

      • @M600@lemmy.world
        link
        fedilink
        111 hours ago

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

    • @talentedkiwi@sh.itjust.works
      link
      fedilink
      10
      edit-2
      13 hours ago

      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

        • @talentedkiwi@sh.itjust.works
          link
          fedilink
          1
          edit-2
          10 hours ago

          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

          • @talentedkiwi@sh.itjust.works
            link
            fedilink
            210 hours ago

            I see someone mention watchtower, while not a bad thing, I just prefer to manually update. This helps to ensure any breaking changes don’t break my system. Especially with something like Immich at it’s had a lot of them recently as they work towards stable. I just generally subscribe to their release and do updates as necessary.

    • @CosmicTurtle0@lemmy.dbzer0.com
      link
      fedilink
      English
      314 hours ago

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

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