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

@@ -10,7 +10,7 @@ services:
# Zookeeper for Kafka coordination
zookeeper:
<<: *defaults
image: confluentinc/cp-zookeeper:${KAFKA_VERSION:-7.8.0}
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-zookeeper:${KAFKA_VERSION:-7.8.0}
ports:
- "${ZOOKEEPER_CLIENT_PORT_OVERRIDE:-2181}:2181"
volumes:
@@ -43,7 +43,7 @@ services:
# Kafka broker
kafka:
<<: *defaults
image: confluentinc/cp-kafka:${KAFKA_VERSION:-7.8.0}
image: ${GLOBAL_REGISTRY:-}confluentinc/cp-kafka:${KAFKA_VERSION:-7.8.0}
depends_on:
zookeeper:
condition: service_healthy
@@ -91,7 +91,7 @@ services:
# Kafka UI (optional)
kafka-ui:
<<: *defaults
image: provectuslabs/kafka-ui:${KAFKA_UI_VERSION:-latest}
image: ${GLOBAL_REGISTRY:-}provectuslabs/kafka-ui:${KAFKA_UI_VERSION:-latest}
depends_on:
kafka:
condition: service_healthy