diff --git a/pages/common/docker-container-remove.md b/pages/common/docker-container-remove.md new file mode 100644 index 000000000..c7b78345b --- /dev/null +++ b/pages/common/docker-container-remove.md @@ -0,0 +1,8 @@ +# docker container remove + +> This command is an alias of `docker rm`. +> More information: . + +- View documentation for the original command: + +`tldr docker rm` diff --git a/pages/common/docker-container-rm.md b/pages/common/docker-container-rm.md new file mode 100644 index 000000000..586c7c8c8 --- /dev/null +++ b/pages/common/docker-container-rm.md @@ -0,0 +1,8 @@ +# docker container rm + +> This command is an alias of `docker rm`. +> More information: . + +- View documentation for the original command: + +`tldr docker rm` diff --git a/pages/common/docker-rm.md b/pages/common/docker-rm.md new file mode 100644 index 000000000..cbbbb0dcc --- /dev/null +++ b/pages/common/docker-rm.md @@ -0,0 +1,20 @@ +# docker rm + +> Remove one or more containers. +> More information: . + +- Remove containers: + +`docker rm {{container1 container2 ...}}` + +- Force remove a container: + +`docker rm --force {{container1 container2 ...}}` + +- Remove a container and its volumes: + +`docker rm --volumes {{container}}` + +- Display help: + +`docker rm`