Exploring Minikube Commands
Let's learn about some other useful Minikube commands.
Checking the Enviroment Variables
Another useful Minikube command to output the enviroment variables is docker-env:
The output is as follows.
If you have worked with Docker Machine, you’ll notice that the output is the same. Both docker-machine env and minikube docker-env serve the same purpose. They output the environment variables required for a local Docker client to communicate with a remote Docker server. In this case, that Docker server is the one inside a VM created by Minikube.
📝Note : We assume that you already have Docker installed on your machine. If that’s not the case, please go to the Install Docker page and follow the instructions for your operating system.
Configuring the Shell
Once Docker is installed, we can connect the client running on your laptop with the server in the ...