delete and recreate docker images code example
Example 1: 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 2: 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