From 425e1dfc00fe527341befe4a31394fd3aa99d1fc Mon Sep 17 00:00:00 2001 From: Akashdeep Dhar Date: Jan 30 2021 15:00:52 +0000 Subject: Fixed image name fetching exception Signed-off-by: Akashdeep Dhar --- diff --git a/dish/back.py b/dish/back.py index e78af91..8afa11b 100644 --- a/dish/back.py +++ b/dish/back.py @@ -59,7 +59,7 @@ class DockerContainerInformation: "ports": contobjc.ports, "status": contobjc.status, "image": { - "name": contobjc.image.name, + "name": contobjc.image.tags[0], "short_id": contobjc.image.short_id } }