Update all Docker Images at once

Update ( 2018 ): As mentioned in the comments, you can by now also use the following syntax : docker images –filter “dangling=false” –format “{{.Repository}}:{{.Tag}}” | xargs -L1 docker pull This would then update all images that aren’t currently dangling ( Images that show up with <none> as they aren’t used any longer. You should clean […]