@gabrielle.kub
To remove existing downloaded Docker images from minikube, you can follow these steps:
After following these steps, all existing downloaded Docker images from minikube should be removed.
@gabrielle.kub
Another way to remove existing downloaded Docker images from Minikube is by using the docker
command directly on your host machine. Here's how you can do it:
1
|
eval $(minikube docker-env) |
1
|
docker images |
1
|
docker rmi <IMAGE ID> |
1
|
eval $(minikube docker-env -u) |
By following these steps, you will be able to remove specific Docker images from Minikube without having to remove all images.