Skip to content

Commit

Permalink
ci: make docker image args configurable from env vars (#4484)
Browse files Browse the repository at this point in the history
refactor: make docker image args configurable from env vars
  • Loading branch information
zyy17 authored Aug 2, 2024
1 parent 9d5d7c1 commit 8e7c027
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/docker-compose/cluster-with-etcd.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
x-custom:
etcd_initial_cluster_token: &etcd_initial_cluster_token "--initial-cluster-token=etcd-cluster"
etcd_common_settings: &etcd_common_settings
image: quay.io/coreos/etcd:v3.5.10
image: "${ETCD_REGISTRY:-quay.io}/${ETCD_NAMESPACE:-coreos}/etcd:${ETCD_VERSION:-v3.5.10}"
entrypoint: /usr/local/bin/etcd
greptimedb_image: &greptimedb_image docker.io/greptimedb/greptimedb:latest
greptimedb_image: &greptimedb_image "${GREPTIMEDB_REGISTRY:-docker.io}/${GREPTIMEDB_NAMESPACE:-greptime}/greptimedb:${GREPTIMEDB_VERSION:-latest}"

services:
etcd0:
Expand Down

0 comments on commit 8e7c027

Please sign in to comment.