From bd58d1f9633c8eef975ae16f2a09f7c9e0972b1e Mon Sep 17 00:00:00 2001 From: Congxian Qiu Date: Wed, 17 Jan 2024 17:56:26 +0800 Subject: [PATCH] [AMORO-2505] Change the default docker image version to 'latest' in the startup script (#2506) [AMORO-2505] Change the default docker image version to 'latest' in the startup script (#2505) The 'latest' version in docker means that the last image has been built without a specified tag. --- docker/demo-cluster.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/demo-cluster.sh b/docker/demo-cluster.sh index d91b9b9d2a..7777b8b6c4 100755 --- a/docker/demo-cluster.sh +++ b/docker/demo-cluster.sh @@ -18,7 +18,8 @@ # -AMORO_TAG=master-snapshot +# default to use the last built image when no specified tag given +AMORO_TAG=latest CURRENT_DIR="$( cd "$(dirname "$0")" ; pwd -P )"