how to remove image docker code example

Example 1: windows delete all docker images

$ docker system prune --all

Example 2: remove docker image

docker image rm [image id]

Example 3: remove docker images

docker system prune -a

Example 4: docker remove image

docker image rm [OPTIONS] IMAGE [IMAGE...]
#[OPTIONS]
--force , -f		Force removal of the image
--no-prune		Do not delete untagged parents

Example 5: delete docker containers

docker container rm [container id]

Example 6: docker remove image

docker image rm [OPTIONS] IMAGE [IMAGE...]

Tags:

Misc Example