docker-rmi.1 920 B

1234567891011121314151617181920212223242526272829
  1. .\" Process this file with
  2. .\" nroff -man -Tascii docker-run.1
  3. .\"
  4. .TH "DOCKER" "1" "MARCH 2014" "0.1" "Docker"
  5. .SH NAME
  6. docker-rmi \- Remove one or more images.
  7. .SH SYNOPSIS
  8. .B docker rmi
  9. [\fB-f\fR|\fB--force\fR[=\fIfalse\fR]
  10. IMAGE [IMAGE...]
  11. .SH DESCRIPTION
  12. This will remove one or more images from the host node. This does not remove images from a registry. You cannot remove an image of a running container unless you use the \fB-f\fR option. To see all images on a host use the \fBdocker images\fR command.
  13. .SH "OPTIONS"
  14. .TP
  15. .B -f, --force=\fItrue\fR|\fIfalse\fR:
  16. When set to true, force the removal of the image. The default is \fIfalse\fR.
  17. .SH EXAMPLES
  18. .sp
  19. .PP
  20. .B Removing an image
  21. .TP
  22. Here is an example of removing and image:
  23. .sp
  24. .RS
  25. docker rmi fedora/httpd
  26. .RE
  27. .sp
  28. .SH HISTORY
  29. March 2014, Originally compiled by William Henry (whenry at redhat dot com) based on dockier.io source material and internal work.