fix(docker): restrict Redis port binding to local interface

This commit is contained in:
Abhinav Raut
2025-04-17 00:45:33 +05:30
parent c434de130b
commit 67090fb052

View File

@@ -49,7 +49,8 @@ services:
container_name: libredesk_redis
restart: unless-stopped
ports:
- "6379:6379"
# Only bind on the local interface.
- "127.0.0.1:6379:6379"
networks:
- libredesk
volumes: