How to remove docker images based on name?
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
add a comment |
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
add a comment |
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
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
docker
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
add a comment |
add a comment |
11 Answers
11
active
oldest
votes
Try the following :
docker rmi $(docker images |grep 'imagename')
Windows Powershell :
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")
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
|
show 2 more comments
Slightly more exact version - grepping only on the repository name:
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
4
This should be considered as only correct answer
– Gajotres
Jul 21 '17 at 7:50
23
this only removes images tagged as latestdocker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
– Drew
Aug 30 '17 at 15:44
add a comment |
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
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 (iefoo:latest
).grep 'imagename
filters those lines to only those images that containimagename
. Putting that in$()
evaluates that & passes to the outerdocker 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 widowsdocker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')
– Zameer Fouzan
Oct 23 '18 at 12:46
add a comment |
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
thanks for edit @jose
– kushalbhattad
Sep 19 '18 at 7:56
add a comment |
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)
add a comment |
I also got another concise answer. The only change was to remove the unnecessary -I {}
flag.
docker images | grep 'imagename' | xargs docker rmi
add a comment |
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}'
add a comment |
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.
add a comment |
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.
add a comment |
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'
add a comment |
docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Try the following :
docker rmi $(docker images |grep 'imagename')
Windows Powershell :
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")
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
|
show 2 more comments
Try the following :
docker rmi $(docker images |grep 'imagename')
Windows Powershell :
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")
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
|
show 2 more comments
Try the following :
docker rmi $(docker images |grep 'imagename')
Windows Powershell :
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")
Try the following :
docker rmi $(docker images |grep 'imagename')
Windows Powershell :
docker rmi $(docker images --format "{{.Repository}}:{{.Tag}}"|findstr "imagename")
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
|
show 2 more comments
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
|
show 2 more comments
Slightly more exact version - grepping only on the repository name:
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
4
This should be considered as only correct answer
– Gajotres
Jul 21 '17 at 7:50
23
this only removes images tagged as latestdocker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
– Drew
Aug 30 '17 at 15:44
add a comment |
Slightly more exact version - grepping only on the repository name:
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
4
This should be considered as only correct answer
– Gajotres
Jul 21 '17 at 7:50
23
this only removes images tagged as latestdocker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
– Drew
Aug 30 '17 at 15:44
add a comment |
Slightly more exact version - grepping only on the repository name:
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
Slightly more exact version - grepping only on the repository name:
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
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 latestdocker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
– Drew
Aug 30 '17 at 15:44
add a comment |
4
This should be considered as only correct answer
– Gajotres
Jul 21 '17 at 7:50
23
this only removes images tagged as latestdocker 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
add a comment |
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
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 (iefoo:latest
).grep 'imagename
filters those lines to only those images that containimagename
. Putting that in$()
evaluates that & passes to the outerdocker 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 widowsdocker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')
– Zameer Fouzan
Oct 23 '18 at 12:46
add a comment |
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
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 (iefoo:latest
).grep 'imagename
filters those lines to only those images that containimagename
. Putting that in$()
evaluates that & passes to the outerdocker 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 widowsdocker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')
– Zameer Fouzan
Oct 23 '18 at 12:46
add a comment |
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'imagename')
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 (iefoo:latest
).grep 'imagename
filters those lines to only those images that containimagename
. Putting that in$()
evaluates that & passes to the outerdocker 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 widowsdocker rmi $( docker images --format '{{.Repository}}:{{.Tag}}' | Select-String -Pattern 'imagename')
– Zameer Fouzan
Oct 23 '18 at 12:46
add a comment |
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 (iefoo:latest
).grep 'imagename
filters those lines to only those images that containimagename
. Putting that in$()
evaluates that & passes to the outerdocker 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 widowsdocker 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
add a comment |
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
thanks for edit @jose
– kushalbhattad
Sep 19 '18 at 7:56
add a comment |
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
thanks for edit @jose
– kushalbhattad
Sep 19 '18 at 7:56
add a comment |
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
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
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
add a comment |
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
add a comment |
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)
add a comment |
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)
add a comment |
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)
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)
edited Nov 11 '17 at 12:29
answered Jun 21 '17 at 12:38


udondanudondan
34.7k10119128
34.7k10119128
add a comment |
add a comment |
I also got another concise answer. The only change was to remove the unnecessary -I {}
flag.
docker images | grep 'imagename' | xargs docker rmi
add a comment |
I also got another concise answer. The only change was to remove the unnecessary -I {}
flag.
docker images | grep 'imagename' | xargs docker rmi
add a comment |
I also got another concise answer. The only change was to remove the unnecessary -I {}
flag.
docker images | grep 'imagename' | xargs docker rmi
I also got another concise answer. The only change was to remove the unnecessary -I {}
flag.
docker images | grep 'imagename' | xargs docker rmi
answered Oct 17 '16 at 12:32


Aditya SinghAditya Singh
8,83092851
8,83092851
add a comment |
add a comment |
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}'
add a comment |
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}'
add a comment |
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}'
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}'
edited Oct 18 '16 at 0:56
answered Oct 18 '16 at 0:01
zaman sakibzaman sakib
170310
170310
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 13 '18 at 0:23


sergeyzsergeyz
1,077712
1,077712
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
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
add a comment |
add a comment |
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'
add a comment |
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'
add a comment |
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'
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'
answered Nov 27 '18 at 15:31


Tim ChaubetTim Chaubet
226
226
add a comment |
add a comment |
docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )
add a comment |
docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )
add a comment |
docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )
docker rmi $(docker image ls repo/image_name* | awk {'print $1":"$2'} )
answered Jan 28 at 13:45
Michael A.Michael A.
10727
10727
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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