How to remove docker images based on name?












44















I want to delete all versions of docker images with names that contain a given string (imagename).

I have tried the below, but it doesn't seem to work:



docker images | grep 'imagename' | xargs -I {} docker rmi










share|improve this question





























    44















    I want to delete all versions of docker images with names that contain a given string (imagename).

    I have tried the below, but it doesn't seem to work:



    docker images | grep 'imagename' | xargs -I {} docker rmi










    share|improve this question



























      44












      44








      44


      7






      I want to delete all versions of docker images with names that contain a given string (imagename).

      I have tried the below, but it doesn't seem to work:



      docker images | grep 'imagename' | xargs -I {} docker rmi










      share|improve this question
















      I want to delete all versions of docker images with names that contain a given string (imagename).

      I have tried the below, but it doesn't seem to work:



      docker images | grep 'imagename' | xargs -I {} docker rmi







      docker






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 22 '17 at 12:29









      RJFalconer

      5,77833155




      5,77833155










      asked Oct 17 '16 at 10:30









      Aditya SinghAditya Singh

      8,83092851




      8,83092851
























          11 Answers
          11






          active

          oldest

          votes


















          50














          Try the following :



          docker rmi $(docker images |grep 'imagename')


          Windows Powershell :



          docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")





          share|improve this answer





















          • 5





            Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

            – Charlie
            Jul 25 '17 at 13:19













          • Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

            – Charlie
            Jul 25 '17 at 13:26






          • 3





            @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

            – RJFalconer
            Aug 22 '17 at 12:25











          • I am getting this following error: "docker rmi requires at least 1 argument."

            – michali
            Jul 9 '18 at 7:14













          • @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

            – Rambler
            Jul 9 '18 at 7:28



















          32














          Slightly more exact version - grepping only on the repository name:



          docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





          share|improve this answer





















          • 4





            This should be considered as only correct answer

            – Gajotres
            Jul 21 '17 at 7:50






          • 23





            this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

            – Drew
            Aug 30 '17 at 15:44





















          23














          docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





          share|improve this answer


























          • Can you explain what this does? Bits of random code could be dangerous.

            – kilojoules
            Mar 28 '18 at 20:08






          • 5





            docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

            – Adam Parkin
            Mar 30 '18 at 18:17











          • Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

            – timmins
            Aug 29 '18 at 17:35






          • 1





            on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

            – Zameer Fouzan
            Oct 23 '18 at 12:46



















          6














          Simply you can add --force at the end of the command. Like:



          sudo docker rmi <docker_image_id> --force



          To make it more intelligent you can stop any running container before remove the image:



          sudo docker stop $(docker ps | grep <your_container_name> | awk '{print $1}')

          sudo docker rm $(docker ps | grep <your_container_name> | awk '{print $1}')

          sudo docker rmi $(docker images | grep <your_image_name> | awk '{print $3}') --force


          In docker ps, $1 is the 1st column i.e. docker container id
          and $3 is the 3rd column i.e. docker image id






          share|improve this answer


























          • thanks for edit @jose

            – kushalbhattad
            Sep 19 '18 at 7:56



















          5














          docker images actually uses the first positional argument as an image name to filter for. No grep's and awk's required. The -q option will return only the matching images IDs which can be fed to docker rmi.



          docker rmi --force $(docker images -q imagename | uniq)





          share|improve this answer

































            2














            I also got another concise answer. The only change was to remove the unnecessary -I {} flag.



            docker images | grep 'imagename' | xargs docker rmi






            share|improve this answer































              2














              docker rmi `docker images | awk '$1 ~ /imageName/ {print $3}'`


              This will remove all the images by name "imageName".
              In some cases this may give an error like "image is referenced in one or more repositories". In that case use force delete.



              docker rmi -f `docker images | awk '$1 ~ /imageName/ {print $3}'`


              Another way can be:



              docker images | awk '{ OFS = ":" }$1 ~ /imageName/ {print $1,$2}'





              share|improve this answer

































                2














                For some reason I wasn't able to use any of the given answers here. Here's what worked for me.



                docker images | grep "gcr.io/kubernetes-learn-197422/last-week-weather-service" | awk '{print $3}' | xargs docker rmi



                awk '{print $3}' is an important part. It extracts id from the 3rd column.






                share|improve this answer































                  1














                  I find my answer more simple.



                  Example, your image name is python_image.



                  Then your code should be:



                  docker rmi $(docker images --filter=reference='python_image' --format "{{.ID}}")



                  I hope this helps.






                  share|improve this answer

































                    0














                    Minor remark:
                    From what we are experiencing, it seems you're - since docker 18.03 - no longer able to remove untagged images based on just the name. You either need to use the name+tag as stated above or use the ID.



                    docker images --format={{.ID}} | xargs -I % sh -c 'docker rmi --force % 2>&1'





                    share|improve this answer































                      0














                      docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )





                      share|improve this answer























                        Your Answer






                        StackExchange.ifUsing("editor", function () {
                        StackExchange.using("externalEditor", function () {
                        StackExchange.using("snippets", function () {
                        StackExchange.snippets.init();
                        });
                        });
                        }, "code-snippets");

                        StackExchange.ready(function() {
                        var channelOptions = {
                        tags: "".split(" "),
                        id: "1"
                        };
                        initTagRenderer("".split(" "), "".split(" "), channelOptions);

                        StackExchange.using("externalEditor", function() {
                        // Have to fire editor after snippets, if snippets enabled
                        if (StackExchange.settings.snippets.snippetsEnabled) {
                        StackExchange.using("snippets", function() {
                        createEditor();
                        });
                        }
                        else {
                        createEditor();
                        }
                        });

                        function createEditor() {
                        StackExchange.prepareEditor({
                        heartbeatType: 'answer',
                        autoActivateHeartbeat: false,
                        convertImagesToLinks: true,
                        noModals: true,
                        showLowRepImageUploadWarning: true,
                        reputationToPostImages: 10,
                        bindNavPrevention: true,
                        postfix: "",
                        imageUploader: {
                        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                        allowUrls: true
                        },
                        onDemand: true,
                        discardSelector: ".discard-answer"
                        ,immediatelyShowMarkdownHelp:true
                        });


                        }
                        });














                        draft saved

                        draft discarded


















                        StackExchange.ready(
                        function () {
                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f40084044%2fhow-to-remove-docker-images-based-on-name%23new-answer', 'question_page');
                        }
                        );

                        Post as a guest















                        Required, but never shown

























                        11 Answers
                        11






                        active

                        oldest

                        votes








                        11 Answers
                        11






                        active

                        oldest

                        votes









                        active

                        oldest

                        votes






                        active

                        oldest

                        votes









                        50














                        Try the following :



                        docker rmi $(docker images |grep 'imagename')


                        Windows Powershell :



                        docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")





                        share|improve this answer





















                        • 5





                          Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

                          – Charlie
                          Jul 25 '17 at 13:19













                        • Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

                          – Charlie
                          Jul 25 '17 at 13:26






                        • 3





                          @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

                          – RJFalconer
                          Aug 22 '17 at 12:25











                        • I am getting this following error: "docker rmi requires at least 1 argument."

                          – michali
                          Jul 9 '18 at 7:14













                        • @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

                          – Rambler
                          Jul 9 '18 at 7:28
















                        50














                        Try the following :



                        docker rmi $(docker images |grep 'imagename')


                        Windows Powershell :



                        docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")





                        share|improve this answer





















                        • 5





                          Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

                          – Charlie
                          Jul 25 '17 at 13:19













                        • Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

                          – Charlie
                          Jul 25 '17 at 13:26






                        • 3





                          @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

                          – RJFalconer
                          Aug 22 '17 at 12:25











                        • I am getting this following error: "docker rmi requires at least 1 argument."

                          – michali
                          Jul 9 '18 at 7:14













                        • @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

                          – Rambler
                          Jul 9 '18 at 7:28














                        50












                        50








                        50







                        Try the following :



                        docker rmi $(docker images |grep 'imagename')


                        Windows Powershell :



                        docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")





                        share|improve this answer















                        Try the following :



                        docker rmi $(docker images |grep 'imagename')


                        Windows Powershell :



                        docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")






                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited Feb 7 at 10:56

























                        answered Oct 17 '16 at 10:37









                        RamblerRambler

                        1,87811120




                        1,87811120








                        • 5





                          Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

                          – Charlie
                          Jul 25 '17 at 13:19













                        • Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

                          – Charlie
                          Jul 25 '17 at 13:26






                        • 3





                          @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

                          – RJFalconer
                          Aug 22 '17 at 12:25











                        • I am getting this following error: "docker rmi requires at least 1 argument."

                          – michali
                          Jul 9 '18 at 7:14













                        • @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

                          – Rambler
                          Jul 9 '18 at 7:28














                        • 5





                          Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

                          – Charlie
                          Jul 25 '17 at 13:19













                        • Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

                          – Charlie
                          Jul 25 '17 at 13:26






                        • 3





                          @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

                          – RJFalconer
                          Aug 22 '17 at 12:25











                        • I am getting this following error: "docker rmi requires at least 1 argument."

                          – michali
                          Jul 9 '18 at 7:14













                        • @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

                          – Rambler
                          Jul 9 '18 at 7:28








                        5




                        5





                        Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

                        – Charlie
                        Jul 25 '17 at 13:19







                        Current version of Docker support this (no grep): docker rmi $(docker images 'imagename')

                        – Charlie
                        Jul 25 '17 at 13:19















                        Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

                        – Charlie
                        Jul 25 '17 at 13:26





                        Current version of Docker seems to support this - maybe I'm missing something? - docker rmi 'imagename'

                        – Charlie
                        Jul 25 '17 at 13:26




                        3




                        3





                        @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

                        – RJFalconer
                        Aug 22 '17 at 12:25





                        @Charlie I think most people are looking for a way to match all images that match 'imagename' rather than a single image named exactly 'imagename'.

                        – RJFalconer
                        Aug 22 '17 at 12:25













                        I am getting this following error: "docker rmi requires at least 1 argument."

                        – michali
                        Jul 9 '18 at 7:14







                        I am getting this following error: "docker rmi requires at least 1 argument."

                        – michali
                        Jul 9 '18 at 7:14















                        @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

                        – Rambler
                        Jul 9 '18 at 7:28





                        @michali It means that there is no matching image returned.Can you verify that there is a matching entry present by just running : docker images |grep 'imagename'

                        – Rambler
                        Jul 9 '18 at 7:28













                        32














                        Slightly more exact version - grepping only on the repository name:



                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





                        share|improve this answer





















                        • 4





                          This should be considered as only correct answer

                          – Gajotres
                          Jul 21 '17 at 7:50






                        • 23





                          this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

                          – Drew
                          Aug 30 '17 at 15:44


















                        32














                        Slightly more exact version - grepping only on the repository name:



                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





                        share|improve this answer





















                        • 4





                          This should be considered as only correct answer

                          – Gajotres
                          Jul 21 '17 at 7:50






                        • 23





                          this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

                          – Drew
                          Aug 30 '17 at 15:44
















                        32












                        32








                        32







                        Slightly more exact version - grepping only on the repository name:



                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





                        share|improve this answer















                        Slightly more exact version - grepping only on the repository name:



                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')






                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited Feb 25 at 13:20









                        lucrib

                        109112




                        109112










                        answered Oct 17 '16 at 10:50









                        Elton StonemanElton Stoneman

                        8,56312430




                        8,56312430








                        • 4





                          This should be considered as only correct answer

                          – Gajotres
                          Jul 21 '17 at 7:50






                        • 23





                          this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

                          – Drew
                          Aug 30 '17 at 15:44
















                        • 4





                          This should be considered as only correct answer

                          – Gajotres
                          Jul 21 '17 at 7:50






                        • 23





                          this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

                          – Drew
                          Aug 30 '17 at 15:44










                        4




                        4





                        This should be considered as only correct answer

                        – Gajotres
                        Jul 21 '17 at 7:50





                        This should be considered as only correct answer

                        – Gajotres
                        Jul 21 '17 at 7:50




                        23




                        23





                        this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

                        – Drew
                        Aug 30 '17 at 15:44







                        this only removes images tagged as latest docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')

                        – Drew
                        Aug 30 '17 at 15:44













                        23














                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





                        share|improve this answer


























                        • Can you explain what this does? Bits of random code could be dangerous.

                          – kilojoules
                          Mar 28 '18 at 20:08






                        • 5





                          docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

                          – Adam Parkin
                          Mar 30 '18 at 18:17











                        • Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

                          – timmins
                          Aug 29 '18 at 17:35






                        • 1





                          on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

                          – Zameer Fouzan
                          Oct 23 '18 at 12:46
















                        23














                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





                        share|improve this answer


























                        • Can you explain what this does? Bits of random code could be dangerous.

                          – kilojoules
                          Mar 28 '18 at 20:08






                        • 5





                          docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

                          – Adam Parkin
                          Mar 30 '18 at 18:17











                        • Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

                          – timmins
                          Aug 29 '18 at 17:35






                        • 1





                          on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

                          – Zameer Fouzan
                          Oct 23 '18 at 12:46














                        23












                        23








                        23







                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')





                        share|improve this answer















                        docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')






                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited Mar 28 '18 at 18:42

























                        answered Mar 26 '18 at 16:57









                        AvamoreAvamore

                        30626




                        30626













                        • Can you explain what this does? Bits of random code could be dangerous.

                          – kilojoules
                          Mar 28 '18 at 20:08






                        • 5





                          docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

                          – Adam Parkin
                          Mar 30 '18 at 18:17











                        • Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

                          – timmins
                          Aug 29 '18 at 17:35






                        • 1





                          on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

                          – Zameer Fouzan
                          Oct 23 '18 at 12:46



















                        • Can you explain what this does? Bits of random code could be dangerous.

                          – kilojoules
                          Mar 28 '18 at 20:08






                        • 5





                          docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

                          – Adam Parkin
                          Mar 30 '18 at 18:17











                        • Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

                          – timmins
                          Aug 29 '18 at 17:35






                        • 1





                          on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

                          – Zameer Fouzan
                          Oct 23 '18 at 12:46

















                        Can you explain what this does? Bits of random code could be dangerous.

                        – kilojoules
                        Mar 28 '18 at 20:08





                        Can you explain what this does? Bits of random code could be dangerous.

                        – kilojoules
                        Mar 28 '18 at 20:08




                        5




                        5





                        docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

                        – Adam Parkin
                        Mar 30 '18 at 18:17





                        docker images --format '{{.Repository}}:{{.Tag}} filters the output so only repo & tag are shown (ie foo:latest). grep 'imagename filters those lines to only those images that contain imagename. Putting that in $() evaluates that & passes to the outer docker rmi which removes those images that were matched.

                        – Adam Parkin
                        Mar 30 '18 at 18:17













                        Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

                        – timmins
                        Aug 29 '18 at 17:35





                        Expanding on the above, you can delete all tagged images corresponding to an exact image name as follows: docker rmi -f $(docker images --format '{{.Repository}}:{{.Tag}}' --filter=reference='imagename:*')'

                        – timmins
                        Aug 29 '18 at 17:35




                        1




                        1





                        on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

                        – Zameer Fouzan
                        Oct 23 '18 at 12:46





                        on windows "grep" does not exist (cmd or powershell) The following can be used on widows docker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')

                        – Zameer Fouzan
                        Oct 23 '18 at 12:46











                        6














                        Simply you can add --force at the end of the command. Like:



                        sudo docker rmi <docker_image_id> --force



                        To make it more intelligent you can stop any running container before remove the image:



                        sudo docker stop $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rm $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rmi $(docker images | grep <your_image_name> | awk '{print $3}') --force


                        In docker ps, $1 is the 1st column i.e. docker container id
                        and $3 is the 3rd column i.e. docker image id






                        share|improve this answer


























                        • thanks for edit @jose

                          – kushalbhattad
                          Sep 19 '18 at 7:56
















                        6














                        Simply you can add --force at the end of the command. Like:



                        sudo docker rmi <docker_image_id> --force



                        To make it more intelligent you can stop any running container before remove the image:



                        sudo docker stop $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rm $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rmi $(docker images | grep <your_image_name> | awk '{print $3}') --force


                        In docker ps, $1 is the 1st column i.e. docker container id
                        and $3 is the 3rd column i.e. docker image id






                        share|improve this answer


























                        • thanks for edit @jose

                          – kushalbhattad
                          Sep 19 '18 at 7:56














                        6












                        6








                        6







                        Simply you can add --force at the end of the command. Like:



                        sudo docker rmi <docker_image_id> --force



                        To make it more intelligent you can stop any running container before remove the image:



                        sudo docker stop $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rm $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rmi $(docker images | grep <your_image_name> | awk '{print $3}') --force


                        In docker ps, $1 is the 1st column i.e. docker container id
                        and $3 is the 3rd column i.e. docker image id






                        share|improve this answer















                        Simply you can add --force at the end of the command. Like:



                        sudo docker rmi <docker_image_id> --force



                        To make it more intelligent you can stop any running container before remove the image:



                        sudo docker stop $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rm $(docker ps | grep <your_container_name> | awk '{print $1}')

                        sudo docker rmi $(docker images | grep <your_image_name> | awk '{print $3}') --force


                        In docker ps, $1 is the 1st column i.e. docker container id
                        and $3 is the 3rd column i.e. docker image id







                        share|improve this answer














                        share|improve this answer



                        share|improve this answer








                        edited Sep 11 '18 at 1:58









                        Jose Raul Barreras

                        6631918




                        6631918










                        answered Jun 14 '18 at 9:29









                        kushalbhattadkushalbhattad

                        13816




                        13816













                        • thanks for edit @jose

                          – kushalbhattad
                          Sep 19 '18 at 7:56



















                        • thanks for edit @jose

                          – kushalbhattad
                          Sep 19 '18 at 7:56

















                        thanks for edit @jose

                        – kushalbhattad
                        Sep 19 '18 at 7:56





                        thanks for edit @jose

                        – kushalbhattad
                        Sep 19 '18 at 7:56











                        5














                        docker images actually uses the first positional argument as an image name to filter for. No grep's and awk's required. The -q option will return only the matching images IDs which can be fed to docker rmi.



                        docker rmi --force $(docker images -q imagename | uniq)





                        share|improve this answer






























                          5














                          docker images actually uses the first positional argument as an image name to filter for. No grep's and awk's required. The -q option will return only the matching images IDs which can be fed to docker rmi.



                          docker rmi --force $(docker images -q imagename | uniq)





                          share|improve this answer




























                            5












                            5








                            5







                            docker images actually uses the first positional argument as an image name to filter for. No grep's and awk's required. The -q option will return only the matching images IDs which can be fed to docker rmi.



                            docker rmi --force $(docker images -q imagename | uniq)





                            share|improve this answer















                            docker images actually uses the first positional argument as an image name to filter for. No grep's and awk's required. The -q option will return only the matching images IDs which can be fed to docker rmi.



                            docker rmi --force $(docker images -q imagename | uniq)






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Nov 11 '17 at 12:29

























                            answered Jun 21 '17 at 12:38









                            udondanudondan

                            34.7k10119128




                            34.7k10119128























                                2














                                I also got another concise answer. The only change was to remove the unnecessary -I {} flag.



                                docker images | grep 'imagename' | xargs docker rmi






                                share|improve this answer




























                                  2














                                  I also got another concise answer. The only change was to remove the unnecessary -I {} flag.



                                  docker images | grep 'imagename' | xargs docker rmi






                                  share|improve this answer


























                                    2












                                    2








                                    2







                                    I also got another concise answer. The only change was to remove the unnecessary -I {} flag.



                                    docker images | grep 'imagename' | xargs docker rmi






                                    share|improve this answer













                                    I also got another concise answer. The only change was to remove the unnecessary -I {} flag.



                                    docker images | grep 'imagename' | xargs docker rmi







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Oct 17 '16 at 12:32









                                    Aditya SinghAditya Singh

                                    8,83092851




                                    8,83092851























                                        2














                                        docker rmi `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                        This will remove all the images by name "imageName".
                                        In some cases this may give an error like "image is referenced in one or more repositories". In that case use force delete.



                                        docker rmi -f `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                        Another way can be:



                                        docker images | awk '{ OFS = ":" }$1 ~ /imageName/ {print $1,$2}'





                                        share|improve this answer






























                                          2














                                          docker rmi `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                          This will remove all the images by name "imageName".
                                          In some cases this may give an error like "image is referenced in one or more repositories". In that case use force delete.



                                          docker rmi -f `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                          Another way can be:



                                          docker images | awk '{ OFS = ":" }$1 ~ /imageName/ {print $1,$2}'





                                          share|improve this answer




























                                            2












                                            2








                                            2







                                            docker rmi `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                            This will remove all the images by name "imageName".
                                            In some cases this may give an error like "image is referenced in one or more repositories". In that case use force delete.



                                            docker rmi -f `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                            Another way can be:



                                            docker images | awk '{ OFS = ":" }$1 ~ /imageName/ {print $1,$2}'





                                            share|improve this answer















                                            docker rmi `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                            This will remove all the images by name "imageName".
                                            In some cases this may give an error like "image is referenced in one or more repositories". In that case use force delete.



                                            docker rmi -f `docker images | awk '$1 ~ /imageName/ {print $3}'`


                                            Another way can be:



                                            docker images | awk '{ OFS = ":" }$1 ~ /imageName/ {print $1,$2}'






                                            share|improve this answer














                                            share|improve this answer



                                            share|improve this answer








                                            edited Oct 18 '16 at 0:56

























                                            answered Oct 18 '16 at 0:01









                                            zaman sakibzaman sakib

                                            170310




                                            170310























                                                2














                                                For some reason I wasn't able to use any of the given answers here. Here's what worked for me.



                                                docker images | grep "gcr.io/kubernetes-learn-197422/last-week-weather-service" | awk '{print $3}' | xargs docker rmi



                                                awk '{print $3}' is an important part. It extracts id from the 3rd column.






                                                share|improve this answer




























                                                  2














                                                  For some reason I wasn't able to use any of the given answers here. Here's what worked for me.



                                                  docker images | grep "gcr.io/kubernetes-learn-197422/last-week-weather-service" | awk '{print $3}' | xargs docker rmi



                                                  awk '{print $3}' is an important part. It extracts id from the 3rd column.






                                                  share|improve this answer


























                                                    2












                                                    2








                                                    2







                                                    For some reason I wasn't able to use any of the given answers here. Here's what worked for me.



                                                    docker images | grep "gcr.io/kubernetes-learn-197422/last-week-weather-service" | awk '{print $3}' | xargs docker rmi



                                                    awk '{print $3}' is an important part. It extracts id from the 3rd column.






                                                    share|improve this answer













                                                    For some reason I wasn't able to use any of the given answers here. Here's what worked for me.



                                                    docker images | grep "gcr.io/kubernetes-learn-197422/last-week-weather-service" | awk '{print $3}' | xargs docker rmi



                                                    awk '{print $3}' is an important part. It extracts id from the 3rd column.







                                                    share|improve this answer












                                                    share|improve this answer



                                                    share|improve this answer










                                                    answered Mar 13 '18 at 0:23









                                                    sergeyzsergeyz

                                                    1,077712




                                                    1,077712























                                                        1














                                                        I find my answer more simple.



                                                        Example, your image name is python_image.



                                                        Then your code should be:



                                                        docker rmi $(docker images --filter=reference='python_image' --format "{{.ID}}")



                                                        I hope this helps.






                                                        share|improve this answer






























                                                          1














                                                          I find my answer more simple.



                                                          Example, your image name is python_image.



                                                          Then your code should be:



                                                          docker rmi $(docker images --filter=reference='python_image' --format "{{.ID}}")



                                                          I hope this helps.






                                                          share|improve this answer




























                                                            1












                                                            1








                                                            1







                                                            I find my answer more simple.



                                                            Example, your image name is python_image.



                                                            Then your code should be:



                                                            docker rmi $(docker images --filter=reference='python_image' --format "{{.ID}}")



                                                            I hope this helps.






                                                            share|improve this answer















                                                            I find my answer more simple.



                                                            Example, your image name is python_image.



                                                            Then your code should be:



                                                            docker rmi $(docker images --filter=reference='python_image' --format "{{.ID}}")



                                                            I hope this helps.







                                                            share|improve this answer














                                                            share|improve this answer



                                                            share|improve this answer








                                                            edited Jan 2 at 0:10









                                                            Ali Ben Messaoud

                                                            9,40684574




                                                            9,40684574










                                                            answered Apr 8 '18 at 8:23









                                                            Reamon C. SumapigReamon C. Sumapig

                                                            8915




                                                            8915























                                                                0














                                                                Minor remark:
                                                                From what we are experiencing, it seems you're - since docker 18.03 - no longer able to remove untagged images based on just the name. You either need to use the name+tag as stated above or use the ID.



                                                                docker images --format={{.ID}} | xargs -I % sh -c 'docker rmi --force % 2>&1'





                                                                share|improve this answer




























                                                                  0














                                                                  Minor remark:
                                                                  From what we are experiencing, it seems you're - since docker 18.03 - no longer able to remove untagged images based on just the name. You either need to use the name+tag as stated above or use the ID.



                                                                  docker images --format={{.ID}} | xargs -I % sh -c 'docker rmi --force % 2>&1'





                                                                  share|improve this answer


























                                                                    0












                                                                    0








                                                                    0







                                                                    Minor remark:
                                                                    From what we are experiencing, it seems you're - since docker 18.03 - no longer able to remove untagged images based on just the name. You either need to use the name+tag as stated above or use the ID.



                                                                    docker images --format={{.ID}} | xargs -I % sh -c 'docker rmi --force % 2>&1'





                                                                    share|improve this answer













                                                                    Minor remark:
                                                                    From what we are experiencing, it seems you're - since docker 18.03 - no longer able to remove untagged images based on just the name. You either need to use the name+tag as stated above or use the ID.



                                                                    docker images --format={{.ID}} | xargs -I % sh -c 'docker rmi --force % 2>&1'






                                                                    share|improve this answer












                                                                    share|improve this answer



                                                                    share|improve this answer










                                                                    answered Nov 27 '18 at 15:31









                                                                    Tim ChaubetTim Chaubet

                                                                    226




                                                                    226























                                                                        0














                                                                        docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )





                                                                        share|improve this answer




























                                                                          0














                                                                          docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )





                                                                          share|improve this answer


























                                                                            0












                                                                            0








                                                                            0







                                                                            docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )





                                                                            share|improve this answer













                                                                            docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )






                                                                            share|improve this answer












                                                                            share|improve this answer



                                                                            share|improve this answer










                                                                            answered Jan 28 at 13:45









                                                                            Michael A.Michael A.

                                                                            10727




                                                                            10727






























                                                                                draft saved

                                                                                draft discarded




















































                                                                                Thanks for contributing an answer to Stack Overflow!


                                                                                • Please be sure to answer the question. Provide details and share your research!

                                                                                But avoid



                                                                                • Asking for help, clarification, or responding to other answers.

                                                                                • Making statements based on opinion; back them up with references or personal experience.


                                                                                To learn more, see our tips on writing great answers.




                                                                                draft saved


                                                                                draft discarded














                                                                                StackExchange.ready(
                                                                                function () {
                                                                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f40084044%2fhow-to-remove-docker-images-based-on-name%23new-answer', 'question_page');
                                                                                }
                                                                                );

                                                                                Post as a guest















                                                                                Required, but never shown





















































                                                                                Required, but never shown














                                                                                Required, but never shown












                                                                                Required, but never shown







                                                                                Required, but never shown

































                                                                                Required, but never shown














                                                                                Required, but never shown












                                                                                Required, but never shown







                                                                                Required, but never shown







                                                                                Popular posts from this blog

                                                                                MongoDB - Not Authorized To Execute Command

                                                                                in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

                                                                                How to fix TextFormField cause rebuild widget in Flutter