From 878d374f37561ece8c37b081f68ea56bc7fda3ba Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 21 Aug 2017 12:23:54 -0400 Subject: [PATCH] Update README Add missing kpod-ps information Add link for kpod history video. Signed-off-by: Daniel J Walsh --- README.md | 3 ++- docs/kpod.1.md | 3 +++ transfer.md | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 310c53da..8e6a6844 100644 --- a/README.md +++ b/README.md @@ -44,13 +44,14 @@ It is currently in active development in the Kubernetes community through the [d | [kpod-cp(1)](/docs/kpod-cp.1.md) | Copy files/folders between a container and the local filesystem || | [kpod-diff(1)](/docs/kpod-diff.1.md) | Inspect changes on a container or image's filesystem || | [kpod-export(1)](/docs/kpod-export.1.md) | Export container's filesystem contents as a tar archive || -| [kpod-history(1)](/docs/kpod-history.1.md) | Shows the history of an image || +| [kpod-history(1)](/docs/kpod-history.1.md) | Shows the history of an image |[![...](/docs/play.png)](https://asciinema.org/a/bCvUQJ6DkxInMELZdc5DinNSx)| | [kpod-images(1)](/docs/kpod-images.1.md) | List images in local storage |[![...](/docs/play.png)](https://asciinema.org/a/133649)| | [kpod-info(1)](/docs/kpod-info.1.md) | Display system information || | [kpod-inspect(1)](/docs/kpod-inspect.1.md) | Display the configuration of a container or image |[![...](/docs/play.png)](https://asciinema.org/a/133418)| | [kpod-load(1)](/docs/kpod-load.1.md) | Load an image from docker archive or oci |[![...](/docs/play.png)](https://asciinema.org/a/kp8kOaexEhEa20P1KLZ3L5X4g)| | [kpod-logs(1)](/docs/kpod-logs.1.md) | Display the logs of a container || | [kpod-mount(1)](/docs/kpod-mount.1.md) | Mount a working container's root filesystem || +| [kpod-ps(1)](/docs/kpod-ps.1.md) | Prints out information about containers || | [kpod-pull(1)](/docs/kpod-pull.1.md) | Pull an image from a registry |[![...](/docs/play.png)](https://asciinema.org/a/lr4zfoynHJOUNu1KaXa1dwG2X)| | [kpod-push(1)](/docs/kpod-push.1.md) | Push an image to a specified destination |[![...](/docs/play.png)](https://asciinema.org/a/133276)| | [kpod-rename(1)](/docs/kpod-rename.1.md) | Rename a container || diff --git a/docs/kpod.1.md b/docs/kpod.1.md index d4635a45..70238a76 100644 --- a/docs/kpod.1.md +++ b/docs/kpod.1.md @@ -76,6 +76,9 @@ Display the logs of a container ### mount Mount a working container's root filesystem +### ps +Prints out information about containers + ### pull Pull an image from a registry diff --git a/transfer.md b/transfer.md index 268a5785..d5ad3950 100644 --- a/transfer.md +++ b/transfer.md @@ -46,6 +46,7 @@ There are other equivalents for these tools | `docker history`| [`kpod history`](./docs/kpod-history.1.md)| | `docker images` | [`kpod images`](./docs/kpod-images.1.md) | | `docker load` | [`kpod load`](./docs/kpod-load.1.md) | +| `docker ps` | [`kpod ps`](./docs/kpod-ps.1.md) | | `docker pull` | [`kpod pull`](./docs/kpod-pull.1.md) | | `docker push` | [`kpod push`](./docs/kpod-push.1.md) | | `docker rename` | [`kpod rename`](./docs/kpod-rename.1.md) |