1. Clone this repo
git clone https://github.com/ashwanthrkumar/Understanding-Docker.git
2. Enter into the directory
cd Understanding-Docker
3. Make sure you have installed Docker
docker --version
4. If docker not found download from
https://www.docker.com/
5. Now build your docker image (I have given mine as hello-docker you can give your own)
docker build -t hello-docker .
6. Run the Container
docker run -p 5000:5000 hello-docker
7. Visit in browser
http://localhost:5000
Technologies used in the project:
- Python
- Docker