Skip to content

furins/django-on-docker

 
 

Repository files navigation

Development

Uses the default Django development server.

  1. Modify the first lines in the Makefile to customize the webapp

  2. Update the environment variables in the docker-compose.yml and .env.dev files.

  3. Build the images and run the containers:

    $ make build
    $ make up

    Test it out at http://localhost:8000. The "app" folder is mounted into the container and your code changes apply automatically.

Production

Uses gunicorn + nginx.

  1. Rename .env.prod-sample to .env.prod and .env.prod.db-sample to .env.prod.db. Update the environment variables.

  2. Build the images and run the containers:

    $ make build-prod
    $ make up-prod

    Test it out at http://localhost:1337. No mounted folders. To apply changes, the image must be re-built.

About

Dockerizing Django with Postgres, Gunicorn, and Nginx

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Makefile 95.9%
  • Dockerfile 4.1%