Get ExposedPorts from Config if it does not exist in ContainerConfig#26
Open
nimah79 wants to merge 9 commits intooffsecginger:masterfrom
Open
Get ExposedPorts from Config if it does not exist in ContainerConfig#26nimah79 wants to merge 9 commits intooffsecginger:masterfrom
nimah79 wants to merge 9 commits intooffsecginger:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In images builded using BuildKit,
ExposedPortsdoes not exist inConfigfield, not inContainerConfig(Related issue indocker/cli).Sample output of
docker image inspectcommand for an image built using BuildKit:[ { "Id": "sha256:2dfa6c380c5fa5a1e7e99e137032f314d3121c755a713cd3a60dc7454124ad50", "RepoTags": [ "testi:latest" ], "RepoDigests": [], "Parent": "", "Comment": "buildkit.dockerfile.v0", "Created": "2023-03-23T20:57:30.366632471Z", "Container": "", "ContainerConfig": { "Hostname": "", "Domainname": "", "User": "", "AttachStdin": false, "AttachStdout": false, "AttachStderr": false, "Tty": false, "OpenStdin": false, "StdinOnce": false, "Env": null, "Cmd": null, "Image": "", "Volumes": null, "WorkingDir": "", "Entrypoint": null, "OnBuild": null, "Labels": null }, "DockerVersion": "", "Author": "", "Config": { "Hostname": "", "Domainname": "", "User": "", "AttachStdin": false, "AttachStdout": false, "AttachStderr": false, "ExposedPorts": { "80/tcp": {} }, "Tty": false, "OpenStdin": false, "StdinOnce": false, "Env": [ ... ], "Cmd": null, "Image": "", "Volumes": null, "WorkingDir": "/var/www/html", "Entrypoint": [ "/bin/bash", "/tmp/docker-entrypoint.sh" ], "OnBuild": null, "Labels": null, "StopSignal": "SIGWINCH" }, "Architecture": "arm64", ... } ]This PR fixes getting exposed ports from images built using BuildKit.