This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 4ce7b7e21 Telemetry guide: fix setup-polaris service (#3597)
4ce7b7e21 is described below
commit 4ce7b7e21e72c541d43b7df7d95eb9d5a7862d11
Author: Robert Stupp <[email protected]>
AuthorDate: Thu Jan 29 14:59:32 2026 +0100
Telemetry guide: fix setup-polaris service (#3597)
Fixes the polaris-setup service to use the "working" way/syntax, in
alignment to other guides.
---
getting-started/telemetry/docker-compose.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/getting-started/telemetry/docker-compose.yml
b/getting-started/telemetry/docker-compose.yml
index bb7aa24a6..8c94ebfb0 100644
--- a/getting-started/telemetry/docker-compose.yml
+++ b/getting-started/telemetry/docker-compose.yml
@@ -65,7 +65,11 @@ services:
- CLIENT_SECRET=s3cr3t
volumes:
- ../assets/polaris/:/polaris
- entrypoint: '/bin/sh -c "chmod +x /polaris/create-catalog.sh &&
/polaris/create-catalog.sh"'
+ entrypoint: "/bin/sh"
+ command:
+ - "-c"
+ - >-
+ /polaris/create-catalog.sh;
prometheus:
image: docker.io/prom/prometheus:v3.9.1