Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 297 Bytes

File metadata and controls

11 lines (7 loc) · 297 Bytes

docker-REST

A docker container running flask python environment shows a good RESTful API example

Build the image using command: docker build -t flaskapp .

Run the Docker container using the command: docker run -d -p 5000:5000 flaskapp

We have used 5000 as Python works on this default port.