Add kpod pause
and kpod unpause
Implement the ability to pause and unpause running containers. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
This commit is contained in:
parent
45747cc5d0
commit
9db7cf1370
13 changed files with 444 additions and 11 deletions
|
@ -40,12 +40,13 @@ There are other equivalents for these tools
|
|||
| Existing Step | CRI-O (and friends) |
|
||||
| :---: | :---: |
|
||||
| `docker build` | [`buildah bud`](https://github.com/projectatomic/buildah/blob/master/docs/buildah-bud.md) |
|
||||
| `docker cp` | [`kpod mount`](./docs/kpod-cp.1.md) |
|
||||
| `docker cp` | [`kpod mount`](./docs/kpod-cp.1.md) *** |
|
||||
| `docker diff` | [`kpod diff`](./docs/kpod-diff.1.md) |
|
||||
| `docker export` | [`kpod export`](./docs/kpod-export.1.md) |
|
||||
| `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 pause` | [`kpod pause`](./docs/kpod-pause.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) |
|
||||
|
@ -54,4 +55,8 @@ There are other equivalents for these tools
|
|||
| `docker rmi` | [`kpod rmi`](./docs/kpod-rmi.1.md) |
|
||||
| `docker save` | [`kpod save`](./docs/kpod-save.1.md) |
|
||||
| `docker tag` | [`kpod tag`](./docs/kpod-tag.1.md) |
|
||||
| `docker stop` | [`kpod stop`](./docs/kpod-stop.1.md) |
|
||||
| `docker unpause`| [`kpod unpause`](./docs/kpod-unpause.1.md)|
|
||||
| `docker version`| [`kpod version`](./docs/kpod-version.1.md)|
|
||||
|
||||
*** Use mount to take advantage of the entire linux tool chain rather then just cp. Read [`here`](./docs/kpod-cp.1.md) for more information.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue