Entrypoint should be an array in output of podman inspect #13803
Labels
kind/bug
Categorizes issue or PR as related to a bug.
locked - please file new issue/PR
Assist humans wanting to comment on an old issue or PR with locked comments.
/kind bug
Description
There is a difference in the shape of the objects returned by
podman inspect
anddocker inspect
for containers, and this difference can cause issues for downstream tools.Steps to reproduce the issue:
Run
podman inspect $(podman create postgres:14-alpine)
.Describe the results you received:
Inside the
Config
object,Entrypoint
is a single string,"docker-entrypoint.sh
.Describe the results you expected:
When I repeat the above with Docker,
Entrypoint
is an array of strings,["docker-entrypoint.sh"]
.Output of
podman version
:Output of
podman info --debug
:Package info (e.g. output of
rpm -q podman
orapt list podman
):Have you tested with the latest version of Podman and have you checked the Podman Troubleshooting Guide? (https://github.com/containers/podman/blob/main/troubleshooting.md)
Yes, I built it from source, and got the same result.
Additional environment details (AWS, VirtualBox, physical, etc.):
This is on a physical machine.
The text was updated successfully, but these errors were encountered: