To communicate with the Docker daemon in the Minikube VM, we run this command in our terminal.

eval $(minikube docker-env)

minikube docker-env is a command that returns a set of environment variables that are required for us to communicate with the Docker daemon in the Minikube VM.

eval will evaluate the environment variables returned, causing them to be set in our terminal.