In this video we are going to cover docker tutorial for beginners .
#dockertutorials #dockerinhindi
Sample DOCKER FILE for testing ubuntu image
# this base image
FROM ubuntu
# author name
MAINTAINER durgesh
#update command
RUN apt update
#start up executable
CMD ["echo","this is my first ubuntu image"]