github.com/containers/podman/v5@v5.1.0-rc1/docs/source/markdown/options/entrypoint.md (about)

     1  ####> This option file is used in:
     2  ####>   podman create, run
     3  ####> If file is edited, make sure the changes
     4  ####> are applicable to all of those.
     5  #### **--entrypoint**=*"command"* | *'["command", "arg1", ...]'*
     6  
     7  Override the default ENTRYPOINT from the image.
     8  
     9  The ENTRYPOINT of an image is similar to a COMMAND
    10  because it specifies what executable to run when the container starts, but it is
    11  (purposely) more difficult to override. The ENTRYPOINT gives a container its
    12  default nature or behavior. When the ENTRYPOINT is set, the
    13  container runs as if it were that binary, complete with default options. More options can be
    14  passed in via the COMMAND. But, if a user wants to run
    15  something else inside the container, the **--entrypoint** option allows a new
    16  ENTRYPOINT to be specified.
    17  
    18  Specify multi option commands in the form of a json string.