Docker to Kubernetes Journey

Hariom Vashisth
uptime 99

--

From Zero to Hero

Prerequisites

To follow this tutorial, you will need the following:

How to install and use docker?

Image building

We are going to build our image.

We are going to use three files:

Put those files into a directory on your system:

mkdir helloworld && cd helloworld
git clone https://github.com/hariom282538/docker-images.git
cd docker-images/
docker build -t hello-world .
docker run -it -p 80:80 hello-world

Perfect, we can kill our container with a Ctrl+c in the console and go to the next section! Yeeeaahhh!

--

--