diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-17 15:25:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 15:25:09 -0400 |
commit | fd184fa4a1d0bd7797de1fb062c90e1a6d56bd1e (patch) | |
tree | 08d480ab4e980643fdb158ded79e57b937a4192b /docs/source/markdown/podman-create.1.md | |
parent | 5694104c24f36d8575853a48e8ba3cdbf87b8f5c (diff) | |
parent | 6f1440a3ec16dfbf644acb87012967bc297ec975 (diff) | |
download | podman-fd184fa4a1d0bd7797de1fb062c90e1a6d56bd1e.tar.gz podman-fd184fa4a1d0bd7797de1fb062c90e1a6d56bd1e.tar.bz2 podman-fd184fa4a1d0bd7797de1fb062c90e1a6d56bd1e.zip |
Merge pull request #6522 from mheon/unless-stopped
Add support for the unless-stopped restart policy
Diffstat (limited to 'docs/source/markdown/podman-create.1.md')
-rw-r--r-- | docs/source/markdown/podman-create.1.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-create.1.md b/docs/source/markdown/podman-create.1.md index 1da9d72e6..03ac8642f 100644 --- a/docs/source/markdown/podman-create.1.md +++ b/docs/source/markdown/podman-create.1.md @@ -676,6 +676,7 @@ Valid values are: - `no` : Do not restart containers on exit - `on-failure[:max_retries]` : Restart containers when they exit with a non-0 exit code, retrying indefinitely or until the optional max_retries count is hit - `always` : Restart containers when they exit, regardless of status, retrying indefinitely +- `unless-stopped` : Identical to **always** Please note that restart will not restart containers after a system reboot. If this functionality is required in your environment, you can invoke Podman from a systemd unit file, or create an init script for whichever init system is in use. |