search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Programming Dictionary

Online technical manual for service programmers
Popular searches:
Dictionary homepage Server Docker Docker rm command
Docker rm command Detailed instructions for use

Docker rm command

Chinese translation Recent Updates: 2018-06-23 09:16:00

Docker is an open source application container engine, based on the Go language and open source in compliance with the Apache2.0 protocol.

Docker allows developers to package their applications and dependencies into a lightweight, portable container, and then publish it to any popular Linux machine, which can also be virtualized.

Docker rm command syntax

docker rm: delete one or more containers

docker rm [OPTIONS] CONTAINER [CONTAINER...]

Docker rm command example

Force delete containers db01 and db02

docker rm -f db01 db02

Remove the connection of container nginx01 to container db01, Connection name db

docker rm -l db

Delete container nginx01 and delete the data volume mounted by the container

< pre class="brush:php;toolbar:false">docker rm -v nginx01
Docker rm command