Last updated 1 year ago
Was this helpful?
echo "Hello World" > index.html
touch Dockerfile
FROM nginx COPY index.html /usr/share/nginx.html
A Dockerfile is a text file with instructions to build a Docker image
When we run a Dockerfile, Docker image is created When we run the docker image, containers are created
sudo service docker start
docker build -t <folder-name> .
The folder should have the Dockerfile
docker images
docker run -p 8080:80 <image-name>
http://localhost:8080