From b3dd907bfe0cf7c3cd4979fe416d93bedbd8ee4f Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 26 Feb 2024 15:26:14 +0900 Subject: [PATCH] docs: fix missing podman command in example Signed-off-by: Kenichi Kamiya --- .../docs/podman/accessing-podman-from-another-wsl-instance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/podman/accessing-podman-from-another-wsl-instance.md b/website/docs/podman/accessing-podman-from-another-wsl-instance.md index e7ddf98f5cd..6e3661e3199 100644 --- a/website/docs/podman/accessing-podman-from-another-wsl-instance.md +++ b/website/docs/podman/accessing-podman-from-another-wsl-instance.md @@ -248,7 +248,7 @@ Verify that, on your WSL distribution, the Podman CLI communicates with your Pod On your WSL distribution, start a container such as `quay.io/podman/hello`, and list the name of the last running container: ```shell-session - $ podman quay.io/podman/hello + $ podman run quay.io/podman/hello $ podman ps -a --no-trunc --last 1 ```