summaryrefslogtreecommitdiff
path: root/libpod/define
diff options
context:
space:
mode:
authorAditya R <arajan@redhat.com>2022-04-08 17:49:08 +0530
committerAditya R <arajan@redhat.com>2022-04-08 18:43:37 +0530
commit0cebd158b6d8da1828b1255982e27fe9224310d0 (patch)
treec479b4c282323b8a800d0d3a336e0e1f2894f072 /libpod/define
parent0c9c3e6714905fbb493e0b634e09b56ae096592e (diff)
downloadpodman-0cebd158b6d8da1828b1255982e27fe9224310d0.tar.gz
podman-0cebd158b6d8da1828b1255982e27fe9224310d0.tar.bz2
podman-0cebd158b6d8da1828b1255982e27fe9224310d0.zip
container,inspect: convert Entrypoint to array instead of a string
Convert container entrypoint from string to an array inorder to make sure there is parity between `podman inspect` and `docker inspect` Signed-off-by: Aditya R <arajan@redhat.com>
Diffstat (limited to 'libpod/define')
-rw-r--r--libpod/define/container_inspect.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/define/container_inspect.go b/libpod/define/container_inspect.go
index ae2ce9724..444fbff62 100644
--- a/libpod/define/container_inspect.go
+++ b/libpod/define/container_inspect.go
@@ -44,7 +44,7 @@ type InspectContainerConfig struct {
// Container working directory
WorkingDir string `json:"WorkingDir"`
// Container entrypoint
- Entrypoint string `json:"Entrypoint"`
+ Entrypoint []string `json:"Entrypoint"`
// On-build arguments - presently unused. More of Buildah's domain.
OnBuild *string `json:"OnBuild"`
// Container labels