Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 405 Bytes

README.md

File metadata and controls

11 lines (6 loc) · 405 Bytes

This is just a sample HTML project, which demonstrate Docker functionality.

Just clone this repo. Then run "docker build -t ." command.

docker build -t sample-html-app .

It will create image from your Dockerfile. Then to run this image, use "docker run -dit --name -p :80 "

docker run -dit --name jumboapp -p 8080:80 my-apache2