feat: add ${GLOBAL_REGISTRY} for change docker image

This commit is contained in:
Sun-ZhenXing
2025-11-05 20:26:14 +08:00
parent 373cc3cdd6
commit a65a009640
127 changed files with 203 additions and 204 deletions

View File

@@ -9,7 +9,7 @@ x-defaults: &defaults
services:
mcp:
<<: *defaults
image: mcp/redis:${MCP_REDIS_VERSION:-latest}
image: ${GLOBAL_REGISTRY:-}mcp/redis:${MCP_REDIS_VERSION:-latest}
environment:
- REDIS_HOST=redis
- REDIS_PORT=6379
@@ -37,7 +37,7 @@ services:
redis:
<<: *defaults
image: redis:${REDIS_VERSION:-7-alpine}
image: ${GLOBAL_REGISTRY:-}redis:${REDIS_VERSION:-7-alpine}
command: redis-server --appendonly yes
ports:
- "${REDIS_PORT_OVERRIDE:-6379}:6379"