Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Jumpserver | 20,175 | 15 hours ago | 150 | gpl-3.0 | Python | |||||
JumpServer 是广受欢迎的开源堡垒机,是符合 4A 规范的专业运维安全审计系统。 | ||||||||||
Ownphotos | 2,687 | 4 months ago | 90 | mit | Jupyter Notebook | |||||
Self hosted alternative to Google Photos | ||||||||||
Babybuddy | 1,598 | 9 days ago | 40 | bsd-2-clause | Python | |||||
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. | ||||||||||
Archer | 1,501 | 4 months ago | 34 | apache-2.0 | JavaScript | |||||
基于inception的自动化SQL操作平台,支持SQL执行、LDAP认证、发邮件、OSC、SQL查询、SQL优化建议、权限管理等功能,支持docker镜像 | ||||||||||
Hellodjango Blog Tutorial | 909 | 2 years ago | 11 | gpl-3.0 | Python | |||||
免费带你学 django 全栈!基于 django 2.2 的个人博客,初学者绝对不能错过的 django 教程!。◕ᴗ◕。 | ||||||||||
Django On Docker | 829 | 8 months ago | 6 | mit | Python | |||||
Dockerizing Django with Postgres, Gunicorn, and Nginx | ||||||||||
Django React Boilerplate | 528 | 5 months ago | 15 | mit | JavaScript | |||||
DIY Django + React Boilerplate for starting your SaaS | ||||||||||
Lazy Balancer | 525 | a year ago | 5 | Python | ||||||
nginx for balancer web ui | ||||||||||
Opman Django | 515 | 4 years ago | HTML | |||||||
:100::white_check_mark:自动化运维平台:CMDB、CI/CD、DevOps、资产管理、任务编排、持续交付、系统监控、运维管理、配置管理 | ||||||||||
Docker Django Nginx Uwsgi Postgres Tutorial | 401 | 21 days ago | 3 | mit | Python | |||||
Docker + Django + Nginx + uWSGI + Postgres 基本教學 - 從無到有 ( Docker + Django + Nginx + uWSGI + Postgres Tutorial ) |
Check out the post.
Uses the default Django development server.
Rename .env.dev-sample to .env.dev.
Update the environment variables in the docker-compose.yml and .env.dev files.
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.
Uses gunicorn + nginx.
Rename .env.prod-sample to .env.prod and .env.prod.db-sample to .env.prod.db. Update the environment variables.
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.