jacobacci wrote: > Question from a Docker noob. > what is the best / correct way to keep the LMS Docker image up to date?
I use OMV and portainer, but it would be the same if running docker and portainer on linux. I use containrrr/watchtower, but make it email me when it finds a new image, then go into portainer and click on the container name and the click 'duplicate/edit' button and that will pull a new image down and apply it. I also run a few crons to remove unused volumes, networks etc remove unused images >24h 'docker image prune --all --filter "until=24h" --force', remove unused volumes 'docker volume prune --force', remove unused networks 'docker network prune --force' Of course you can do the above from with portainer, by clicking images, networks and volumes. If you'd like to see my portainer stack (docker_compose) let me know and I'll post it. ------------------------------------------------------------------------ trythat's Profile: http://forums.slimdevices.com/member.php?userid=66537 View this thread: http://forums.slimdevices.com/showthread.php?t=111828 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
