This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new e893c81a493 branch-4.1: [test](docker) improve the prefix path of
cloud mode docker env #65001 (#65091)
e893c81a493 is described below
commit e893c81a4939e1abd013f040b31a036cdeba2985
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jul 2 08:18:51 2026 +0800
branch-4.1: [test](docker) improve the prefix path of cloud mode docker env
#65001 (#65091)
Cherry-picked from #65001
Co-authored-by: chunping <[email protected]>
---
docker/runtime/doris-compose/cluster.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/docker/runtime/doris-compose/cluster.py
b/docker/runtime/doris-compose/cluster.py
index 4345021a662..bc812f893aa 100644
--- a/docker/runtime/doris-compose/cluster.py
+++ b/docker/runtime/doris-compose/cluster.py
@@ -800,6 +800,9 @@ class MS(CLOUD):
time.strftime("%Y%m%d_%H%M%S"),
uuid.uuid4().hex[:8],
)
+ base_prefix = envs.get('DORIS_CLOUD_PREFIX', '').strip().strip('/')
+ if base_prefix:
+ prefix = '{}/{}'.format(base_prefix, prefix)
envs['DORIS_CLOUD_PREFIX'] = prefix
LOG.info(f"Set DORIS_CLOUD_PREFIX to {prefix}")
return envs
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]