Skip to content

stackriot-labs/Dockerized-Flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dockerized Flask

Dockerized web app using NGINX, Flask and PostgreSQL

Build Status

.
├── docker-compose.yml
├── flask
│   ├── config.py
│   ├── Dockerfile
│   ├── manage.py
│   ├── requirements.txt
│   ├── project
│   │   ├── __init__.py
│   │   ├── models
│   │   │   ├── __init__.py
│   │   │   └── db_models.py
│   │   ├── services
│   │   │   └── __init__.py
│   │   ├── static
│   │   │   ├── css
│   │   │   ├── img
│   │   │   └── js
│   │   ├── templates
│   │   │   └── index.html
│   │   └── website
│   │       ├── __init__.py
│   │       └── views.py
│   └── tests
│       ├── base_website.py
│       ├── __init__.py
│       ├── test_configs.py
│       └── test_website.py
├── nginx
│   ├── app.conf
│   ├── Dockerfile
│   └── nginx.conf
├── postgres
│   ├── create.sql
│   └── Dockerfile
└── README.md

Installation

Flask

Docker

Other

About

Dockerized web app using NGINX, Flask and PostgreSQL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 83.6%
  • Dockerfile 13.2%
  • HTML 3.0%
  • Other 0.2%