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

https://github.com/mehmandarov/docker-flask-helloworld

A simple Flask app running on Docker
https://github.com/mehmandarov/docker-flask-helloworld

docker docker-flask flask python

Last synced: 11 months ago
JSON representation

A simple Flask app running on Docker

Awesome Lists containing this project

README

          

# Docker+Flask Hello World
A simple Flask app running on Docker.

## Running the example

```shell
docker build -t flask-sample-one:latest .
docker run -d -p 5000:5000 flask-sample-one
```

or, if you want to give your container a specific name:

```shell
docker build -t flask-sample-one:latest .
docker run --name my-flask-sample-one -d -p 5000:5000 flask-sample-one
```