Skip to content

Commit

Permalink
Merge pull request #1355 from manics/docker-config
Browse files Browse the repository at this point in the history
Docker engine: replace ContainerConfig with Config
  • Loading branch information
yuvipanda committed Jun 28, 2024
2 parents 9f15678 + 0156a1e commit 5ed9901
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 5ed9901

Please sign in to comment.