fix: adds redis to example compose.yml

This commit is contained in:
2025-05-19 13:05:50 -05:00
parent eac586d946
commit fb47cf9d6b

View File

@@ -82,6 +82,15 @@ services:
timeout: 10s
retries: 10
redis:
image: redis:latest
volumes:
- redis_data:/data
command: redis-server --maxmemory 512MB
restart: unless-stopped
# **Optional**
# Provides a simple method of viewing the database
adminer:
image: adminer
ports:
@@ -91,3 +100,4 @@ volumes:
mysql:
mercure_config:
mercure_data:
redis_data: