Help Wanted: Correct syntax for podman run --entrypoint
#12513
-
I am attempting to use Is there something special in regards to being a rootless container compared to the Docker equivalent? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Have you tried quoting the entrypoint - The entrypoint itself is interpreted as a JSON array first, and if that fails to decode, we treat it as a literal path on the filesystem; it seems here that the JSON decoding is failing, though that seems like valid JSON. |
Beta Was this translation helpful? Give feedback.
Have you tried quoting the entrypoint -
--entrypoint='["/part/one", "/part/two"]'
The entrypoint itself is interpreted as a JSON array first, and if that fails to decode, we treat it as a literal path on the filesystem; it seems here that the JSON decoding is failing, though that seems like valid JSON.