github.com/containers/podman/v5@v5.1.0-rc1/docs/source/markdown/podman-healthcheck-run.1.md (about)

     1  % podman-healthcheck-run 1
     2  
     3  ## NAME
     4  podman\-healthcheck\-run - Run a container healthcheck
     5  
     6  ## SYNOPSIS
     7  **podman healthcheck run** *container*
     8  
     9  ## DESCRIPTION
    10  
    11  Runs the healthcheck command defined in a running container manually.  The resulting error codes are defined
    12  as follows:
    13  
    14  * 0 = healthcheck command succeeded
    15  * 1 = healthcheck command failed
    16  * 125 = an error has occurred
    17  
    18  Possible errors that can occur during the healthcheck are:
    19  * unable to find the container
    20  * container has no defined healthcheck
    21  * container is not running
    22  
    23  ## OPTIONS
    24  #### **--help**
    25  
    26  Print usage statement
    27  
    28  
    29  ## EXAMPLES
    30  
    31  Run healthchecks in specified container:
    32  ```
    33  $ podman healthcheck run mywebapp
    34  ```
    35  
    36  ## SEE ALSO
    37  **[podman(1)](podman.1.md)**, **[podman-healthcheck(1)](podman-healthcheck.1.md)**
    38  
    39  ## HISTORY
    40  Feb 2019, Originally compiled by Brent Baude <bbaude@redhat.com>