From 4b6ca1687a5458e496e29d8beb0a96996f65f3ee Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Sat, 17 Feb 2024 13:36:25 -0500 Subject: [PATCH] Fix up example description of podman-start.1.md.in Signed-off-by: Daniel J Walsh --- docs/source/markdown/podman-start.1.md.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/source/markdown/podman-start.1.md.in b/docs/source/markdown/podman-start.1.md.in index 4810213e3c..1ab42a7049 100644 --- a/docs/source/markdown/podman-start.1.md.in +++ b/docs/source/markdown/podman-start.1.md.in @@ -62,13 +62,25 @@ The default is **true** when attaching, **false** otherwise. ## EXAMPLE +Start specified container: +``` podman start mywebserver +``` +Start multiple containers: +``` podman start 860a4b231279 5421ab43b45 +``` +Start specified container in interactive mode with terminal attached: +``` 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 +``` ## SEE ALSO **[podman(1)](podman.1.md)**