mirror of https://github.com/containers/podman.git
Fix up example description of podman-start.1.md.in
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
parent
fbb4d5dca6
commit
4b6ca1687a
|
|
@ -62,13 +62,25 @@ The default is **true** when attaching, **false** otherwise.
|
||||||
|
|
||||||
## EXAMPLE
|
## EXAMPLE
|
||||||
|
|
||||||
|
Start specified container:
|
||||||
|
```
|
||||||
podman start mywebserver
|
podman start mywebserver
|
||||||
|
```
|
||||||
|
|
||||||
|
Start multiple containers:
|
||||||
|
```
|
||||||
podman start 860a4b231279 5421ab43b45
|
podman start 860a4b231279 5421ab43b45
|
||||||
|
```
|
||||||
|
|
||||||
|
Start specified container in interactive mode with terminal attached:
|
||||||
|
```
|
||||||
podman start --interactive --attach 860a4b231279
|
podman start --interactive --attach 860a4b231279
|
||||||
|
```
|
||||||
|
|
||||||
|
Start last created container in interactive mode (This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines):
|
||||||
|
```
|
||||||
podman start -i -l
|
podman start -i -l
|
||||||
|
```
|
||||||
|
|
||||||
## SEE ALSO
|
## SEE ALSO
|
||||||
**[podman(1)](podman.1.md)**
|
**[podman(1)](podman.1.md)**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue