Django On Docker

Dockerizing Django with Postgres, Gunicorn, and Nginx
Alternatives To Django On Docker
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Jumpserver20,175
15 hours ago150gpl-3.0Python
JumpServer 是广受欢迎的开源堡垒机,是符合 4A 规范的专业运维安全审计系统。
Ownphotos2,687
4 months ago90mitJupyter Notebook
Self hosted alternative to Google Photos
Babybuddy1,598
9 days ago40bsd-2-clausePython
A :baby: buddy to help caregivers track sleep, feedings, diaper changes, and tummy time to learn about and predict baby's needs without (as much) guess work.
Archer1,501
4 months ago34apache-2.0JavaScript
基于inception的自动化SQL操作平台,支持SQL执行、LDAP认证、发邮件、OSC、SQL查询、SQL优化建议、权限管理等功能,支持docker镜像
Hellodjango Blog Tutorial909
2 years ago11gpl-3.0Python
免费带你学 django 全栈!基于 django 2.2 的个人博客,初学者绝对不能错过的 django 教程!。◕ᴗ◕。
Django On Docker829
8 months ago6mitPython
Dockerizing Django with Postgres, Gunicorn, and Nginx
Django React Boilerplate528
5 months ago15mitJavaScript
DIY Django + React Boilerplate for starting your SaaS
Lazy Balancer525
a year ago5Python
nginx for balancer web ui
Opman Django515
4 years agoHTML
:100::white_check_mark:自动化运维平台:CMDB、CI/CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理
Docker Django Nginx Uwsgi Postgres Tutorial401
21 days ago3mitPython
Docker + Django + Nginx + uWSGI + Postgres 基本教學 - 從無到有 ( Docker + Django + Nginx + uWSGI + Postgres Tutorial )
Alternatives To Django On Docker
Select To Compare


Alternative Project Comparisons
Readme

Dockerizing Django with Postgres, Gunicorn, and Nginx

Want to learn how to build this?

Check out the post.

Want to use this project?

Development

Uses the default Django development server.

  1. Rename .env.dev-sample to .env.dev.

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

  3. Build the images and run the containers:

    $ docker-compose up -d --build
    

    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:

    $ docker-compose -f docker-compose.prod.yml up -d --build
    

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

Popular Nginx Projects
Popular Django Projects
Popular Web Servers Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Docker
Django
Postgresql
Nginx
Environment Variables