Update Redis entry in docker-compose.yml files

This commit is contained in:
Keannu Christian Bernasol 2025-09-13 12:23:27 +08:00
parent b004421ea1
commit 7b1d9d2b4c
3 changed files with 1 additions and 4 deletions

View file

@ -6,6 +6,7 @@
A barebones Django REST Framework template for personal use in projects.
- Pre-templated emails
- Caching via Redis
- Debug mode profiling (via Django Silk)
- A working Woodpecker CI/CD template for automated deployments (see [service_queue](https://github.com/lemeow125/Service_Queue) for more info)

View file

@ -21,9 +21,7 @@ services:
image: redis:latest
restart: always
environment:
- REDIS_USERNAME=${CACHE_USERNAME}
- REDIS_PASSWORD=${CACHE_PASSWORD}
- REDIS_DISABLE_DEFAULT_USER="true"
# Email Testing Server
# http://localhost:8025

View file

@ -22,6 +22,4 @@ services:
image: redis:latest
restart: always
environment:
- REDIS_USERNAME=${CACHE_USERNAME}
- REDIS_PASSWORD=${CACHE_PASSWORD}
- REDIS_DISABLE_DEFAULT_USER="true"