Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
15 lines (10 loc) · 449 Bytes

README.md

File metadata and controls

executable file
·
15 lines (10 loc) · 449 Bytes

#Simple Python Flask Dockerized Application#

Build the image using the following command

$ docker build -t simple-flask-app:latest .

Run the Docker container using the command shown below.

$ docker run -d -p 5000:5000 simple-flask-app

The application will be accessible at http:127.0.0.1:5000 or if you are using boot2docker then first find ip address using $ boot2docker ip and the use the ip http://<host_ip>:5000