You are using Runtime Fabric / PCE and need to clean up the residual docker images.
1. Enter into gravity if you are using RTF appliances / PCE .
gravity enter
2. Fetch the list of all the images on a given node
docker images --format {{.Repository}}:{{.Tag}}
3. Fetch the list of all images belonging to the running containers
docker ps --format {{.Image}}
4. Fetch the list of all Unused images
runningImages=$(docker ps --format {{.Image}})
docker images --format {{.Repository}}:{{.Tag}} | grep -v "$runningImages"
5. Cleanup the unused images i.e.To prune including volumes
docker system prune -a --volumes
- all stopped containers - all networks not used by at least one container - all volumes not used by at least one container - all images without at least one container associated to them - all build cache
1) The above steps need to be executed in all the cluster nodes.
2) You should also run the following to clean residual Gravity data from previous versions: How to Delete Old Gravity Version Directories in RTF
001115278

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.