• This repository has been archived on 21/Dec/2023
  • Stars
    star
    129
  • Rank 270,498 (Top 6 %)
  • Language
    Shell
  • License
    BSD 3-Clause "New...
  • Created over 9 years ago
  • Updated about 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Docker Official Image packaging for django

DEPRECATED

This image is officially deprecated in favor of the standard python image, and will receive no further updates after 2016-12-31 (Dec 31, 2016). Please adjust your usage accordingly.

For most usages of this image, it was already not bringing in django from this image, but actually from your project's requirements.txt, so the only "value" being added here was the pre-installing of mysql-client, postgresql-client, and sqlite3 for various uses of the django framework.

For example, a Dockerfile similar to the following would be a good starting point for a Django project using PostgreSQL:

FROM python:3.4

RUN apt-get update \
	&& apt-get install -y --no-install-recommends \
		postgresql-client \
	&& rm -rf /var/lib/apt/lists/*

WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .

EXPOSE 8000
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]

About this Repo

This is the Git repo of the Docker official image for django. See the Docker Hub page for the full readme on how to use this Docker image and for information regarding contributing and issues.

The full readme is generated over in docker-library/docs, specifically in docker-library/docs/django.

See a change merged here that doesn't show up on the Docker Hub yet? Check the "library/django" manifest file in the docker-library/official-images repo, especially PRs with the "library/django" label on that repo. For more information about the official images process, see the docker-library/official-images readme.


More Repositories

1

official-images

Primary source of truth for the Docker "Official Images" program
Shell
6,185
star
2

docs

Documentation for Docker Official Images in docker-library
Shell
4,902
star
3

php

Docker Official Image packaging for PHP
Shell
3,673
star
4

python

Docker Official Image packaging for Python
Shell
2,427
star
5

mysql

Docker Official Image packaging for MySQL Community Server
Shell
2,392
star
6

postgres

Docker Official Image packaging for Postgres
Shell
2,058
star
7

wordpress

Docker Official Image packaging for WordPress
Shell
1,673
star
8

golang

Docker Official Image packaging for golang
Shell
1,424
star
9

openjdk

Docker Official Image packaging for EA builds of OpenJDK from Oracle
Shell
1,129
star
10

redis

Docker Official Image packaging for Redis
Shell
1,089
star
11

docker

Docker Official Image packaging for Docker
Shell
1,007
star
12

mongo

Docker Official Image packaging for MongoDB
Shell
997
star
13

rabbitmq

Docker Official Image packaging for RabbitMQ
Dockerfile
754
star
14

ghost

Docker Official Image packaging for Ghost
Dockerfile
677
star
15

healthcheck

https://github.com/docker/docker/issues/21142 prototypes
Shell
637
star
16

tomcat

Docker Official Image packaging for Apache Tomcat
Dockerfile
611
star
17

ruby

Docker Official Image packaging for Ruby
Shell
554
star
18

repo-info

Extended information (especially license and layer details) about the published Official Images
Perl
516
star
19

hello-world

Shell
489
star
20

elasticsearch

DEPRECATED; https://github.com/docker-library/official-images/pull/15808
Shell
486
star
21

buildpack-deps

Shell
430
star
22

busybox

Docker Official Image packaging for Busybox
Dockerfile
362
star
23

haproxy

Docker Official Image packaging for HAProxy
Shell
338
star
24

httpd

Docker Official Image packaging for Apache HTTP Server
Dockerfile
295
star
25

drupal

Docker Official Image packaging for Drupal
Shell
267
star
26

cassandra

Docker Official Image packaging for Cassandra
Shell
262
star
27

redmine

Docker Official Image packaging for Redmine
Shell
195
star
28

gcc

Docker Official Image packaging for gcc
Shell
153
star
29

rails

Docker Official Image packaging for Ruby on Rails
Shell
142
star
30

memcached

Docker Official Image packaging for memcached
Shell
125
star
31

bashbrew

Canonical build tool for the official images
Go
116
star
32

logstash

DEPRECATED; https://github.com/docker-library/official-images/pull/15808
Shell
107
star
33

kibana

DEPRECATED; https://github.com/docker-library/official-images/pull/15808
Shell
106
star
34

faq

Frequently Asked Questions
103
star
35

owncloud

Docker Official Image packaging for ownCloud
Dockerfile
103
star
36

oi-janky-groovy

Jenkins Pipeline and Job DSL scripts for Official Images Jenkins jobs
Groovy
103
star
37

julia

Docker Official Image packaging for julia
Shell
86
star
38

pypy

Docker Official Image packaging for pypy
Dockerfile
67
star
39

dockerfile-validator

An experimental attempt to catch simple Dockerfile mistakes
Shell
54
star
40

percona

DEPRECATED Docker Official Image packaging for Percona Server, new repo:
Shell
51
star
41

celery

Docker Official Image packaging for Celery
Shell
30
star
42

go-dockerlibrary

DEPRECATED: this repository has become part of https://github.com/docker-library/bashbrew!
Go
20
star
43

perl-bashbrew

Perl-based support libraries/tools for the Bashbrew official-images tool
Perl
8
star
44

commit-warehouse

Obsolete via https://github.com/docker-library/bashbrew/pull/4 + https://github.com/docker-library/bashbrew/pull/12!
Shell
4
star
45

meta-scripts

Scripts to generate metadata (source IDs, build IDs)
Go
2
star