Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/shekhargulati/python-flask-docker-hello-world

Hello world Python Flask application Dockerized
https://github.com/shekhargulati/python-flask-docker-hello-world

Last synced: 3 months ago
JSON representation

Hello world Python Flask application Dockerized

Lists

README

        

# Simple Python Flask Dockerized Application#

Build the image using the following command

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

Run the Docker container using the command shown below.

```bash
$ 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://:5000`