docs(docker): add redis password to docker-compose example

closes #408
This commit is contained in:
Yassine Doghri 2024-03-12 11:08:18 +00:00
parent 523b2c610e
commit bec4f93837
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,7 @@ can be added as a cache handler.
CP_ANALYTICS_SALT: changeme
CP_CACHE_HANDLER: redis
CP_REDIS_HOST: redis
CP_REDIS_PASSWORD: changeme
networks:
- castopod-app
- castopod-db
@ -72,6 +73,7 @@ can be added as a cache handler.
redis:
image: redis:7.0-alpine
container_name: "castopod-redis"
command: --requirepass changeme
volumes:
- castopod-cache:/data
networks: