Creating a Docker image using Dockerfile and Launch Container
Create directory for Dockerfile
Create Docker file, Name should be Dockerfile
#Start with an #Ubuntu base image
FROM ubuntu
#Add metadata with a Name Label
LABEL Name="Dinesh"
#Update packages and Install Apache2
RUN apt-get update && apt-get inst...
blog.dineshcloud.in2 min read