OpenStack services are deployed to target nodes as Docker containers. When you deploy services, the Docker daemon on the target node downloads the required Docker images from the Docker registry, and uses the images to create the containers.
You may want to remove all the images from a target node to ensure that fresh images are downloaded when you deploy services.
To remove all images, run the following command on the target node:
# docker rmi -f $(docker images -q)

