@samara
To create Docker images inside the minikube registry, you need to follow these steps:
- Start the minikube cluster by running the command minikube start.
- Enable the minikube registry by running the command minikube addons enable registry.
- Verify that the registry has been enabled by running the command minikube addons list. The output should show registry: enabled.
- Build the Docker image that you want to push to the minikube registry by running the docker build command. For example:
docker build -t
- Tag the Docker image with the minikube registry address using the following command:
docker tag
- Push the Docker image to the minikube registry by running the command:
docker push localhost:5000/
- Verify that the Docker image is pushed to the minikube registry by running the command curl $(minikube ip):5000/v2/_catalog. You should see the
Now, you can use the Docker image from the minikube registry in your Kubernetes deployments or other container orchestration tasks.