diff --git a/content/docs/configuration/redis.mdx b/content/docs/configuration/redis.mdx
index 358d54f..76b09d2 100644
--- a/content/docs/configuration/redis.mdx
+++ b/content/docs/configuration/redis.mdx
@@ -197,7 +197,36 @@ Force specific cache namespaces to use in-memory storage even when Redis is enab
FORCED_IN_MEMORY_CACHE_NAMESPACES=ROLES,MESSAGES
```
-Valid cache keys are defined in the `CacheKeys` enum from `librechat-data-provider`.
+Valid cache keys (from the `CacheKeys` enum in `librechat-data-provider`):
+
+| Key | Description |
+|---|---|
+| `CONFIG_STORE` | Configuration store |
+| `ROLES` | User roles |
+| `PLUGINS` | Plugins data |
+| `GEN_TITLE` | Generated titles |
+| `TOOLS` | Tools data |
+| `MODELS_CONFIG` | Models configuration |
+| `MODEL_QUERIES` | Model queries |
+| `STARTUP_CONFIG` | Startup configuration |
+| `ENDPOINT_CONFIG` | Endpoint configuration |
+| `TOKEN_CONFIG` | Token configuration |
+| `APP_CONFIG` | Application configuration |
+| `ABORT_KEYS` | Abort keys |
+| `BANS` | Ban data |
+| `ENCODED_DOMAINS` | Encoded domains |
+| `AUDIO_RUNS` | Audio processing runs |
+| `MESSAGES` | Messages |
+| `FLOWS` | Flows data |
+| `PENDING_REQ` | Pending requests |
+| `S3_EXPIRY_INTERVAL` | S3 expiry intervals |
+| `OPENID_EXCHANGED_TOKENS` | OpenID exchanged tokens |
+| `OPENID_SESSION` | OpenID sessions |
+| `SAML_SESSION` | SAML sessions |
+
+
+Using an invalid key (e.g., the deprecated `STATIC_CONFIG`) will cause a startup error. Only use keys from the table above.
+
## Performance Tuning
diff --git a/content/docs/local/docker.mdx b/content/docs/local/docker.mdx
index 52f6206..ce9db9e 100644
--- a/content/docs/local/docker.mdx
+++ b/content/docs/local/docker.mdx
@@ -13,6 +13,22 @@ For most scenarios, Docker Compose is the recommended installation method due to
Docker Desktop is recommended for most users. For remote server installations, see the [Ubuntu Docker Deployment Guide](/docs/remote/docker_linux).
+
+
+Mac computers with Apple Silicon (M1, M2, M3, M4) processors do not support AVX instructions, which are required by the default MongoDB image used in LibreChat's Docker Compose setup. If you're on an M-series Mac, MongoDB will crash on startup.
+
+**Fix:** Create a `docker-compose.override.yml` to use an older, compatible MongoDB image:
+
+```yaml filename="docker-compose.override.yml"
+services:
+ mongodb:
+ image: mongo:4.4.18
+```
+
+See the [Docker Override guide](/docs/configuration/docker_override) for more details.
+
+
+
## Installation