We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4f7aaa + d43b715 commit 5670fc0Copy full SHA for 5670fc0
ramalama/oci.py
@@ -101,6 +101,9 @@ def list_models(args):
101
return []
102
103
models = json.loads("[" + output[:-1] + "]")
104
+ # exclude dangling images having no tag (i.e. <none>:<none>)
105
+ models = [model for model in models if model["name"] != "oci://<none>:<none>"]
106
+
107
# Grab the size from the inspect command
108
if conman == "docker":
109
# grab the size from the inspect command
0 commit comments