How to Run Locally Built Docker Images in Kubernetes

<p>While working with Kubernetes locally, you may want to run some locally built Docker images in Kubernetes. This may not work out-of-the-box, because minikube uses its own local Docker registry that&rsquo;s not connected to the one on your local machine.</p> <p>In this article, I&rsquo;ll show how easy it is to run locally built images in Kubernetes, without publishing them to a global registry. For this article, I suppose you already have kubectl and minikube installed locally. This article is targeted at the Linux environment.</p> <p>I start with creating the following trivial&nbsp;<code>Dockerfile</code>that runs busybox and outputs &ldquo;Hello World&rdquo;:</p> <p><a href="https://medium.com/swlh/how-to-run-locally-built-docker-images-in-kubernetes-b28fbc32cc1d"><strong>Website</strong></a></p>