Embed presentation
Downloaded 14 times

































![# Dockerfile
FROM ubuntu
MAINTAINER James Turnbull "james@example.com"
RUN apt-get update
RUN apt-get install -y nginx
RUN echo 'Hi, I am in your container'
>/usr/share/nginx/html/index.html
EXPOSE 80
ENTRYPOINT ["/usr/sbin/nginx"]
CMD ["-h"]](https://image.slidesharecdn.com/dockerbydemo-150217131222-conversion-gate02/85/Docker-by-demo-34-320.jpg)












The document provides an overview of Docker, detailing its history, advantages over virtual machines, and essential commands for installing and using Docker. It explains the concept of containers, how to work with Docker images and containers, and touches on writing a Dockerfile. Additionally, it addresses limitations and misconceptions related to Docker, and suggests resources for further learning.

































![# Dockerfile
FROM ubuntu
MAINTAINER James Turnbull "james@example.com"
RUN apt-get update
RUN apt-get install -y nginx
RUN echo 'Hi, I am in your container'
>/usr/share/nginx/html/index.html
EXPOSE 80
ENTRYPOINT ["/usr/sbin/nginx"]
CMD ["-h"]](https://image.slidesharecdn.com/dockerbydemo-150217131222-conversion-gate02/85/Docker-by-demo-34-320.jpg)










