How to update to Portainer 2.9.1?

  • I have been notified for this new update since I got in the WebUI about 10 days ago. However, I still can't find it via LibreELEC addon. How do I update it? Thanks.

  • It's very easy to update docker images automatically with watchtower-updater. You only need to run this SSH command once. From portainer you will start watchtower which will scan all the images that are not stopped, update them if necessary and stop again. Do this every fortnight. It is not a good idea to update automatically because sometimes some containers need to be monitored.

    Code
    docker run -d \
    --name watchtower-updater \
    -v /var/run/docker.sock:/var/run/docker.sock \
    containrrr/watchtower --run-once

    Edited 2 times, last by elonesna (October 24, 2021 at 7:44 PM).