docker remove image by name code example

Example 1: delete all docker images

docker system prune -a

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: how to delete image docker

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

Example 6: docker remove image

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

Tags:

C Example