summaryrefslogtreecommitdiff
path: root/transfer.md
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@debian.org>2017-12-11 19:05:37 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2017-12-12 15:03:05 +0000
commit39b697d9afb4f4a08f16eee58690e61c897bf1aa (patch)
tree5eb0ead78246a80ec2ca38690b48196a73f6d624 /transfer.md
parent88121e0747c03084c233d22fadfd3c227e73a885 (diff)
downloadpodman-39b697d9afb4f4a08f16eee58690e61c897bf1aa.tar.gz
podman-39b697d9afb4f4a08f16eee58690e61c897bf1aa.tar.bz2
podman-39b697d9afb4f4a08f16eee58690e61c897bf1aa.zip
document missing commands between docker and kpod
The list was incomplete. Some commands implemented in both were missing from the main table. We also add a list of commands implemented only in Docker, and only in kpod. Signed-off-by: Antoine Beaupré <anarcat@debian.org> Closes: #122 Approved by: mheon
Diffstat (limited to 'transfer.md')
-rw-r--r--transfer.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/transfer.md b/transfer.md
index 4d5ffd59d..5c1fbc17c 100644
--- a/transfer.md
+++ b/transfer.md
@@ -39,6 +39,7 @@ There are other equivalents for these tools
| :---: | :---: |
| `docker attach` | [`kpod exec`](./docs/kpod-attach.1.md) ***|
| `docker build` | [`buildah bud`](https://github.com/projectatomic/buildah/blob/master/docs/buildah-bud.md) |
+| `docker commit` | [`buildah commit`](https://github.com/projectatomic/buildah/blob/master/docs/buildah-commit.md) |
| `docker cp` | [`kpod mount`](./docs/kpod-cp.1.md) **** |
| `docker create` | [`kpod create`](./docs/kpod-create.1.md) |
| `docker diff` | [`kpod diff`](./docs/kpod-diff.1.md) |
@@ -65,3 +66,32 @@ There are other equivalents for these tools
*** Use `kpod exec` to enter a container and `kpod logs` to view the output of pid 1 of a container.
**** 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.
+
+## Missing commands in kpod
+
+Those Docker commands currently do not have equivalents in `kpod`:
+
+ * `docker container`
+ * `docker events`
+ * `docker image`
+ * `docker network`
+ * `docker node`
+ * `docker plugin`
+ * `docker port`
+ * `docker rename`
+ * `docker restart`
+ * `docker search`
+ * `docker secret`
+ * `docker service`
+ * `docker stack`
+ * `docker swarm`
+ * `docker system`
+ * `docker top`
+ * `docker volume`
+
+## Missing commands in Docker
+
+The following kpod commands do not have a Docker equivalent:
+
+* [`kpod mount`](./docs/kpod-mount.1.md)
+* [`kpod umount`](./docs/kpod-umount.1.md)