26 lines
519 B
Bash
26 lines
519 B
Bash
# Global registry prefix for all images (optional)
|
|
GLOBAL_REGISTRY=
|
|
|
|
# Redis version
|
|
REDIS_VERSION=8.8.0-alpine3.23
|
|
|
|
# Password for Redis authentication (leave empty for no password)
|
|
REDIS_PASSWORD=
|
|
|
|
# Port to bind to on the host machine
|
|
REDIS_PORT_OVERRIDE=6379
|
|
|
|
# Timezone (e.g., UTC, Asia/Shanghai, America/New_York)
|
|
TZ=UTC
|
|
|
|
# Skip permission fixing (set to 1 to skip)
|
|
SKIP_FIX_PERMS=
|
|
|
|
# CPU limits
|
|
REDIS_CPU_LIMIT=0.5
|
|
REDIS_CPU_RESERVATION=0.1
|
|
|
|
# Memory limits
|
|
REDIS_MEMORY_LIMIT=256M
|
|
REDIS_MEMORY_RESERVATION=128M
|