fix: Filter out images whose repo or tag is <none> when listing images
This commit is contained in:
parent
9b707ee1d9
commit
d084c3b7e0
1 changed files with 1 additions and 0 deletions
|
|
@ -590,6 +590,7 @@ impl RunDriver for DockerDriver {
|
||||||
|
|
||||||
images
|
images
|
||||||
.into_iter()
|
.into_iter()
|
||||||
|
.filter(|image| image.repository != "<none>" && image.tag != "<none>")
|
||||||
.map(|image| {
|
.map(|image| {
|
||||||
format!("{}:{}", image.repository, image.tag)
|
format!("{}:{}", image.repository, image.tag)
|
||||||
.parse::<Reference>()
|
.parse::<Reference>()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue