mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 08:22:08 +02:00
docker-rm: add page; docker-container-{remove, rm}: add alias pages (#11126)
* docker rm: add page * docker-rm: update page Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * docker-rm: update page * docker-container-{remove,rm}: add alias pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
parent
d5e44b5ce7
commit
a4a9d5dab8
3 changed files with 36 additions and 0 deletions
8
pages/common/docker-container-remove.md
Normal file
8
pages/common/docker-container-remove.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# docker container remove
|
||||||
|
|
||||||
|
> This command is an alias of `docker rm`.
|
||||||
|
> More information: <https://docs.docker.com/engine/reference/commandline/rm>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr docker rm`
|
8
pages/common/docker-container-rm.md
Normal file
8
pages/common/docker-container-rm.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# docker container rm
|
||||||
|
|
||||||
|
> This command is an alias of `docker rm`.
|
||||||
|
> More information: <https://docs.docker.com/engine/reference/commandline/rm>.
|
||||||
|
|
||||||
|
- View documentation for the original command:
|
||||||
|
|
||||||
|
`tldr docker rm`
|
20
pages/common/docker-rm.md
Normal file
20
pages/common/docker-rm.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# docker rm
|
||||||
|
|
||||||
|
> Remove one or more containers.
|
||||||
|
> More information: <https://docs.docker.com/engine/reference/commandline/rm>.
|
||||||
|
|
||||||
|
- 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`
|
Loading…
Add table
Reference in a new issue