Skip to content

hamik112/Dockerized-Flask

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 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 96.9%
  • HTML 2.9%
  • CSS 0.2%