Access Docker container running on local machine from Minikube cluster

9/6/2018

I've got an application in a local Kubernetes cluster(using Minikube). I also have an application started inside of a container running on my machine (outside of the cluster, in a docker container).

The Docker machine IP running on my machine is: 192.168.99.100

The Minikube IP is: 192.168.99.101

I want to make the application inside the container communicate with the one in the docker container outside of the cluster, but all requests fail with 404. It seems like the cluster doesn't have visibility to the docker container running my app.

Any suggestions how this can be remedied?

-- Mr. Nicky
docker
kubernetes
minikube
visibility

0 Answers