diff --git a/podman.md b/podman.md index db3624661..8e788eba1 100644 --- a/podman.md +++ b/podman.md @@ -34,3 +34,18 @@ Then: ``` podman run -it agora ``` + +To run one interactively, or: + +``` +podman create -it --name agora agora +podman start agora +``` + +To start one detached. Then you can: + +``` +podman attach agora +``` + +...to attach. CTRL-P CTRL-Q to detach gracefully.