├── .envs ├── .django └── .postgres ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── Makefile ├── compose ├── django │ └── Dockerfile └── postgres │ ├── Dockerfile │ └── maintenance │ ├── _sourced │ ├── constants.sh │ ├── countdown.sh │ ├── messages.sh │ └── yes_no.sh │ ├── backup │ ├── backups │ └── restore ├── config └── nginx │ └── mydjango.conf ├── docker-compose.yml ├── readme.md └── src ├── manage.py ├── myapp ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tasks.py ├── tests.py └── views.py ├── mydjango ├── __init__.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.pip └── templates └── hello_world.html /.envs/.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/.envs/.django -------------------------------------------------------------------------------- /.envs/.postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/.envs/.postgres -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/Makefile -------------------------------------------------------------------------------- /compose/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/django/Dockerfile -------------------------------------------------------------------------------- /compose/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/Dockerfile -------------------------------------------------------------------------------- /compose/postgres/maintenance/_sourced/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/_sourced/constants.sh -------------------------------------------------------------------------------- /compose/postgres/maintenance/_sourced/countdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/_sourced/countdown.sh -------------------------------------------------------------------------------- /compose/postgres/maintenance/_sourced/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/_sourced/messages.sh -------------------------------------------------------------------------------- /compose/postgres/maintenance/_sourced/yes_no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/_sourced/yes_no.sh -------------------------------------------------------------------------------- /compose/postgres/maintenance/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/backup -------------------------------------------------------------------------------- /compose/postgres/maintenance/backups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/backups -------------------------------------------------------------------------------- /compose/postgres/maintenance/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/compose/postgres/maintenance/restore -------------------------------------------------------------------------------- /config/nginx/mydjango.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/config/nginx/mydjango.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/readme.md -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/admin.py -------------------------------------------------------------------------------- /src/myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/apps.py -------------------------------------------------------------------------------- /src/myapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/forms.py -------------------------------------------------------------------------------- /src/myapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/myapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/models.py -------------------------------------------------------------------------------- /src/myapp/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/tasks.py -------------------------------------------------------------------------------- /src/myapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/tests.py -------------------------------------------------------------------------------- /src/myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/myapp/views.py -------------------------------------------------------------------------------- /src/mydjango/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mydjango/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/mydjango/celery.py -------------------------------------------------------------------------------- /src/mydjango/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/mydjango/settings.py -------------------------------------------------------------------------------- /src/mydjango/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/mydjango/urls.py -------------------------------------------------------------------------------- /src/mydjango/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/mydjango/wsgi.py -------------------------------------------------------------------------------- /src/requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/requirements.pip -------------------------------------------------------------------------------- /src/templates/hello_world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruddra/docker-django/HEAD/src/templates/hello_world.html --------------------------------------------------------------------------------