1234567891011121314151617181920212223242526272829 |
- .\" 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.
|