summaryrefslogtreecommitdiff
path: root/contrib/man/man1/docker-rmi.1
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/man/man1/docker-rmi.1')
-rw-r--r--contrib/man/man1/docker-rmi.129
1 files changed, 29 insertions, 0 deletions
diff --git a/contrib/man/man1/docker-rmi.1 b/contrib/man/man1/docker-rmi.1
new file mode 100644
index 0000000000..6f33446ecd
--- /dev/null
+++ b/contrib/man/man1/docker-rmi.1
@@ -0,0 +1,29 @@
+.\" Process this file with
+.\" nroff -man -Tascii docker-run.1
+.\"
+.TH "DOCKER" "1" "MARCH 2014" "0.1" "Docker"
+.SH NAME
+docker-rmi \- Remove one or more images.
+.SH SYNOPSIS
+.B docker rmi
+[\fB-f\fR|\fB--force\fR[=\fIfalse\fR]
+IMAGE [IMAGE...]
+.SH DESCRIPTION
+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.
+.SH "OPTIONS"
+.TP
+.B -f, --force=\fItrue\fR|\fIfalse\fR:
+When set to true, force the removal of the image. The default is \fIfalse\fR.
+.SH EXAMPLES
+.sp
+.PP
+.B Removing an image
+.TP
+Here is an example of removing and image:
+.sp
+.RS
+docker rmi fedora/httpd
+.RE
+.sp
+.SH HISTORY
+March 2014, Originally compiled by William Henry (whenry at redhat dot com) based on dockier.io source material and internal work.