Skip to content

Commit

Permalink
Docker engine: replace ContainerConfig with Config
Browse files Browse the repository at this point in the history
ContainerConfig has been removed
  • Loading branch information
manics authored Jun 28, 2024
1 parent 9f15678 commit 0156a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo2docker/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def images(self):

def inspect_image(self, image):
image = self._apiclient.inspect_image(image)
return Image(tags=image["RepoTags"], config=image["ContainerConfig"])
return Image(tags=image["RepoTags"], config=image["Config"])

def push(self, image_spec):
if self.registry_credentials:
Expand Down

0 comments on commit 0156a1e

Please sign in to comment.