Skip to content

Commit 2f2b16a

Browse files
committed
docs: fix inaccurate description of --restart=unless-stopped
`unless-stopped` containers are not restart after a daemon restart Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
1 parent 7908982 commit 2f2b16a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/reference/commandline/container_run.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,12 +1157,12 @@ Use the `--restart` flag to specify a container's *restart policy*. A restart
11571157
policy controls whether the Docker daemon restarts a container after exit.
11581158
Docker supports the following restart policies:
11591159

1160-
| Policy | Result |
1161-
|:---------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
1162-
| `no` | Do not automatically restart the container when it exits. This is the default. |
1163-
| `on-failure[:max-retries]` | Restart only if the container exits with a non-zero exit status. Optionally, limit the number of restart retries the Docker daemon attempts. |
1164-
| `unless-stopped` | Restart the container unless it's explicitly stopped or Docker itself is stopped or restarted. |
1165-
| `always` | Always restart the container regardless of the exit status. When you specify always, the Docker daemon tries to restart the container indefinitely. The container always starts on daemon startup, regardless of the current state of the container. |
1160+
| Flag | Description |
1161+
| :------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
1162+
| `no` | Don't automatically restart the container. (Default) |
1163+
| `on-failure[:max-retries]` | Restart the container if it exits due to an error, which manifests as a non-zero exit code. Optionally, limit the number of times the Docker daemon attempts to restart the container using the `:max-retries` option. The `on-failure` policy only prompts a restart if the container exits with a failure. It doesn't restart the container if the daemon restarts. |
1164+
| `always` | Always restart the container if it stops. If it's manually stopped, it's restarted only when Docker daemon restarts or the container itself is manually restarted. |
1165+
| `unless-stopped` | Similar to `always`, except that when the container is stopped (manually or otherwise), it isn't restarted even after Docker daemon restarts. |
11661166

11671167
```console
11681168
$ docker run --restart=always redis

0 commit comments

Comments
 (0)