Skip to content

Get ExposedPorts from Config if it does not exist in ContainerConfig#26

Open
nimah79 wants to merge 9 commits intooffsecginger:masterfrom
nimah79:master
Open

Get ExposedPorts from Config if it does not exist in ContainerConfig#26
nimah79 wants to merge 9 commits intooffsecginger:masterfrom
nimah79:master

Conversation

@nimah79
Copy link

@nimah79 nimah79 commented Mar 23, 2023

In images builded using BuildKit, ExposedPorts does not exist in Config field, not in ContainerConfig (Related issue in docker/cli).

Sample output of docker image inspect command 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant