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

@@ -37,7 +37,7 @@ x-defaults: &defaults
services:
temporal:
<<: *defaults
image: temporalio/auto-setup:${TEMPORAL_VERSION:-1.24.2}
image: ${GLOBAL_REGISTRY:-}temporalio/auto-setup:${TEMPORAL_VERSION:-1.24.2}
container_name: temporal
ports:
- "${TEMPORAL_FRONTEND_PORT_OVERRIDE:-7233}:7233" # Frontend gRPC
@@ -85,7 +85,7 @@ services:
temporal-ui:
<<: *defaults
image: temporalio/ui:${TEMPORAL_UI_VERSION:-2.28.0}
image: ${GLOBAL_REGISTRY:-}temporalio/ui:${TEMPORAL_UI_VERSION:-2.28.0}
container_name: temporal-ui
ports:
- "${TEMPORAL_UI_PORT_OVERRIDE:-8233}:8080"
@@ -114,7 +114,7 @@ services:
temporal-admin-tools:
<<: *defaults
image: temporalio/admin-tools:${TEMPORAL_VERSION:-1.24.2}
image: ${GLOBAL_REGISTRY:-}temporalio/admin-tools:${TEMPORAL_VERSION:-1.24.2}
container_name: temporal-admin-tools
profiles:
- dev
@@ -138,7 +138,7 @@ services:
postgres:
<<: *defaults
image: postgres:${POSTGRES_VERSION:-16-alpine}
image: ${GLOBAL_REGISTRY:-}postgres:${POSTGRES_VERSION:-16-alpine}
container_name: temporal-postgres
environment:
- POSTGRES_DB=${POSTGRES_DB:-temporal}