github.com/containers/podman/v5@v5.1.0-rc1/docs/source/markdown/options/health-startup-cmd.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  #### **--health-startup-cmd**=*"command"* | *'["command", "arg1", ...]'*
     6  
     7  Set a startup healthcheck command for a container. This command is executed inside the container and is used to gate the regular
     8  healthcheck. When the startup command succeeds, the regular healthcheck begins and the startup healthcheck ceases. Optionally,
     9  if the command fails for a set number of attempts, the container is restarted. A startup healthcheck can be used to ensure that
    10  containers with an extended startup period are not marked as unhealthy until they are fully started. Startup healthchecks can only be
    11  used when a regular healthcheck (from the container's image or the **--health-cmd** option) is also set.