[PR #228] docker-compose sample for Django and Redis integration #311

Open
opened 2025-11-06 14:23:30 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/228
Author: @cankush625
Created: 3/20/2022
Status: 🔄 Open

Base: masterHead: feat/django-redis


📝 Commits (1)

  • 067f88f feat(django-redis): docker-compose sample for Django and Redis integration

📊 Changes

20 files changed (+482 additions, -0 deletions)

View changed files

📝 README.md (+1 -0)
django-redis/.env.example (+4 -0)
django-redis/.gitignore (+148 -0)
django-redis/Dockerfile (+5 -0)
django-redis/README.md (+87 -0)
django-redis/django_redis/__init__.py (+0 -0)
django-redis/django_redis/asgi.py (+16 -0)
django-redis/django_redis/config/__init__.py (+0 -0)
django-redis/django_redis/config/settings.py (+130 -0)
django-redis/django_redis/database/__init__.py (+0 -0)
django-redis/django_redis/database/admin.py (+3 -0)
django-redis/django_redis/database/apps.py (+6 -0)
django-redis/django_redis/database/migrations/__init__.py (+0 -0)
django-redis/django_redis/database/models.py (+3 -0)
django-redis/django_redis/database/urls.py (+8 -0)
django-redis/django_redis/database/views.py (+17 -0)
django-redis/django_redis/manage.py (+22 -0)
django-redis/django_redis/wsgi.py (+16 -0)
django-redis/docker-compose.yml (+16 -0)
django-redis/requirements.txt (+0 -0)

📄 Description

  • Sample Django application that connects with the Redis database.
  • A docker-compose file for provisioning Django application and Redis database containers.

Closes #227

Signed-off-by: cankush625 cankush625@gmail.com


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/228 **Author:** [@cankush625](https://github.com/cankush625) **Created:** 3/20/2022 **Status:** 🔄 Open **Base:** `master` ← **Head:** `feat/django-redis` --- ### 📝 Commits (1) - [`067f88f`](https://github.com/docker/awesome-compose/commit/067f88f32685d5b3c912dcf70bfd0a8b67eaeaa6) feat(django-redis): docker-compose sample for Django and Redis integration ### 📊 Changes **20 files changed** (+482 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -0) ➕ `django-redis/.env.example` (+4 -0) ➕ `django-redis/.gitignore` (+148 -0) ➕ `django-redis/Dockerfile` (+5 -0) ➕ `django-redis/README.md` (+87 -0) ➕ `django-redis/django_redis/__init__.py` (+0 -0) ➕ `django-redis/django_redis/asgi.py` (+16 -0) ➕ `django-redis/django_redis/config/__init__.py` (+0 -0) ➕ `django-redis/django_redis/config/settings.py` (+130 -0) ➕ `django-redis/django_redis/database/__init__.py` (+0 -0) ➕ `django-redis/django_redis/database/admin.py` (+3 -0) ➕ `django-redis/django_redis/database/apps.py` (+6 -0) ➕ `django-redis/django_redis/database/migrations/__init__.py` (+0 -0) ➕ `django-redis/django_redis/database/models.py` (+3 -0) ➕ `django-redis/django_redis/database/urls.py` (+8 -0) ➕ `django-redis/django_redis/database/views.py` (+17 -0) ➕ `django-redis/django_redis/manage.py` (+22 -0) ➕ `django-redis/django_redis/wsgi.py` (+16 -0) ➕ `django-redis/docker-compose.yml` (+16 -0) ➕ `django-redis/requirements.txt` (+0 -0) </details> ### 📄 Description - Sample Django application that connects with the Redis database. - A docker-compose file for provisioning Django application and Redis database containers. Closes #227 Signed-off-by: cankush625 <cankush625@gmail.com> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-06 14:23:30 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#311