├── .env.dev-sample ├── .env.prod-sample ├── .env.prod.db-sample ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.prod.yml ├── docker-compose.yml └── services ├── nginx ├── Dockerfile └── nginx.conf └── web ├── Dockerfile ├── Dockerfile.prod ├── entrypoint.prod.sh ├── entrypoint.sh ├── manage.py ├── project ├── __init__.py ├── config.py ├── media │ └── .gitkeep └── static │ └── hello.txt └── requirements.txt /.env.dev-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/.env.dev-sample -------------------------------------------------------------------------------- /.env.prod-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/.env.prod-sample -------------------------------------------------------------------------------- /.env.prod.db-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/.env.prod.db-sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /services/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/nginx/Dockerfile -------------------------------------------------------------------------------- /services/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/nginx/nginx.conf -------------------------------------------------------------------------------- /services/web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/Dockerfile -------------------------------------------------------------------------------- /services/web/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/Dockerfile.prod -------------------------------------------------------------------------------- /services/web/entrypoint.prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/entrypoint.prod.sh -------------------------------------------------------------------------------- /services/web/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/entrypoint.sh -------------------------------------------------------------------------------- /services/web/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/manage.py -------------------------------------------------------------------------------- /services/web/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/project/__init__.py -------------------------------------------------------------------------------- /services/web/project/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/project/config.py -------------------------------------------------------------------------------- /services/web/project/media/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/web/project/static/hello.txt: -------------------------------------------------------------------------------- 1 | hi! 2 | -------------------------------------------------------------------------------- /services/web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/testdrivenio/flask-on-docker/HEAD/services/web/requirements.txt --------------------------------------------------------------------------------