How to remove old and unused Docker images

When running docker a long time, there are a lot of images in system. How can I remove all unused docker images at once safety to free up the storage?

In addition, I also want to remove images pulled months ago, which have correct TAG

So, I'm not asking for removing untagged images only. I'm searching for a way to remove general unused images, which includes both untagged and other images such as pulled months ago with correct TAG


Update Sept. 2016: Docker 1.13: PR 26108 and commit 86de7c0 introduce a few new commands to help facilitate visualizing how much space the docker daemon data is taking on disk and allowing for easily cleaning up "unneeded" excess.

docker system prune will delete ALL dangling data (ie In order: containers stopped, volumes without containers and images with no containers). Even unused data, with -a option.

You also have:

  • docker container prune
  • docker image prune
  • docker network prune
  • docker volume prune
  • For unused images, use docker image prune -a (for removing dangling and ununsed images).
    Warning: 'unused' means "images not referenced by any container": be careful before using -a .


    Original answer (Sep. 2016)

    I usually do:

    docker rmi $(docker images --filter "dangling=true" -q --no-trunc)
    

    I have an alias for removing those [dangling images]8: drmi

    The dangling=true filter finds unused images

    That way, any intermediate image no longer referenced by a labelled image is removed.

    I do the same first for exited processes (containers)

    alias drmae='docker rm $(docker ps -qa --no-trunc --filter "status=exited")'
    

    As haridsv points out in the comments:

    Technically, you should first clean up containers before cleaning up images, as this will catch more dangling images and less errors .


    Jess Frazelle (jfrazelle) has the bashrc function:

    dcleanup(){
        docker rm -v $(docker ps --filter status=exited -q 2>/dev/null) 2>/dev/null
        docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2>/dev/null
    }
    

    To remove old images, and not just "unreferenced-dangling" images, you can consider docker-gc :


    A simple Docker container and image garbage collection script.

  • Containers that exited more than an hour ago are removed.
  • Images that don't belong to any remaining container after that are removed.

  • Update the second (2017-07-08):

    Refer (again) to VonC, using the even more recent system prune . The impatient can skip the prompt with the -f, --force option:

    docker system prune -f
    

    The impatient and reckless can additionally remove "unused images not just the dangling ones" with the -a, --all option:

    docker system prune -af
    

    https://docs.docker.com/engine/reference/commandline/system_prune/

    Update:

    Refer to VonC's answer which uses the recently added prune commands. Here is the corresponding shell alias convenience:

    alias docker-clean=' 
      docker container prune -f ; 
      docker image prune -f ; 
      docker network prune -f ; 
      docker volume prune -f '
    

    Old answer:

    Delete stopped (exited) containers:

    $ docker ps --no-trunc -aqf "status=exited" | xargs docker rm
    

    Delete unused (dangling) images:

    $ docker images --no-trunc -aqf "dangling=true" | xargs docker rmi
    

    If you have exercised extreme caution with regard to irrevocable data loss , then you can delete unused (dangling) volumes (v1.9 and up):

    $ docker volume ls -qf "dangling=true" | xargs docker volume rm
    

    Here they are in a convenient shell alias:

    alias docker-clean=' 
      docker ps --no-trunc -aqf "status=exited" | xargs docker rm ; 
      docker images --no-trunc -aqf "dangling=true" | xargs docker rmi ; 
      docker volume ls -qf "dangling=true" | xargs docker volume rm'
    

    References:

  • docker ps -f
  • docker rm
  • docker images -f
  • docker rmi
  • Docker v1.9.0 release notes
  • docker volume ls
  • docker volume rm

  • To remove old tagged images that are more than a month old:

    $ docker images --no-trunc --format '{{.ID}} {{.CreatedSince}}' 
        | grep ' months' | awk '{ print $1 }' 
        | xargs --no-run-if-empty docker rmi
    

    Note that it'll fail to remove images that are used by a container, referenced in a repository, has dependent child images... which is probably what you want. Else just add -f flag.

    Example of /etc/cron.daily/docker-gc script:

    #!/bin/sh -e
    
    # Delete all stopped containers (including data-only containers).
    docker ps -a -q --no-trunc --filter "status=exited" | xargs --no-run-if-empty docker rm -v
    
    # Delete all tagged images more than a month old
    # (will fail to remove images still used).
    docker images --no-trunc --format '{{.ID}} {{.CreatedSince}}' | grep ' months' | awk '{ print $1 }' | xargs --no-run-if-empty docker rmi || true
    
    # Delete all 'untagged/dangling' (<none>) images
    # Those are used for Docker caching mechanism.
    docker images -q --no-trunc --filter dangling=true | xargs --no-run-if-empty docker rmi
    
    # Delete all dangling volumes.
    docker volume ls -qf dangling=true | xargs --no-run-if-empty docker volume rm
    
    链接地址: http://www.djcxy.com/p/18240.html

    上一篇: 我如何删除Docker的图像?

    下一篇: 如何删除旧的和未使用的Docker镜像