Merge pull request #34 from kouul/master

Add flask sample
This commit is contained in:
Guillaume LOURS 2020-03-26 11:35:36 +01:00 committed by GitHub
commit 30038951cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 79 additions and 0 deletions

View File

@ -65,6 +65,7 @@ docker-compose down
- [`Angular`](angular)
- [`Spark`](sparkjava)
- [`VueJS`](vuejs)
- [`Flask`](flask)
*Basic setups for different plaforms (not production ready - useful for personal use)*
- [`Gitea / PostgreSQL`](gitea-postgres)

56
flask/README.md Normal file
View File

@ -0,0 +1,56 @@
## Compose sample application
### Python/Flask application with Nginx proxy and a Mongo database
Project structure:
```
.
├── docker-compose.yaml
├── app
   ├── Dockerfile
   ├── requirements.txt
   └── app.py
```
[_docker-compose.yaml_](docker-compose.yaml)
```
services:
web:
build: app
ports:
- '5000:5000'
```
## Deploy with docker-compose
```
$ docker-compose up -d
Creating network "flask_default" with the default driver
Building web
Step 1/6 : FROM python:3.7-alpine
...
...
Status: Downloaded newer image for python:3.7-alpine
Creating flask_web_1 ... done
```
## Expected result
Listing containers must show two containers running and the port mapping as below:
```
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
c126411df522 flask_web "python3 app.py" About a minute ago Up About a minute 0.0.0.0:5000->5000/tcp flask_web_1
```
After the application starts, navigate to `http://localhost:5000` in your web browser or run:
```
$ curl localhost:5000
Hello World!
```
Stop and remove the containers
```
$ docker-compose down
```

6
flask/app/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.7-alpine
WORKDIR /app
RUN pip3 install -r requirements.txt
COPY . /app
ENTRYPOINT ["python3"]
CMD ["app.py"]

9
flask/app/app.py Normal file
View File

@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return "Hello World!"
if __name__ == '__main__':
app.run(host='0.0.0.0')

View File

@ -0,0 +1 @@
flask

6
flask/docker-compose.yml Normal file
View File

@ -0,0 +1,6 @@
version: '3'
services:
web:
build: app
ports:
- '5000:5000'