├── .travis.yml ├── 2.7 ├── Dockerfile └── onbuild │ └── Dockerfile ├── 3.4 ├── Dockerfile └── onbuild │ └── Dockerfile ├── LICENSE ├── README.md ├── generate-stackbrew-library.sh └── update.sh /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/.travis.yml -------------------------------------------------------------------------------- /2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/2.7/Dockerfile -------------------------------------------------------------------------------- /2.7/onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/2.7/onbuild/Dockerfile -------------------------------------------------------------------------------- /3.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/3.4/Dockerfile -------------------------------------------------------------------------------- /3.4/onbuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/3.4/onbuild/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/README.md -------------------------------------------------------------------------------- /generate-stackbrew-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/generate-stackbrew-library.sh -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/docker-library/django/HEAD/update.sh --------------------------------------------------------------------------------