MonkeyCanCode commented on code in PR #3597:
URL: https://github.com/apache/polaris/pull/3597#discussion_r2738157016
##########
getting-started/telemetry/docker-compose.yml:
##########
@@ -65,7 +65,12 @@ 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"
+ - >-
+ chmod +x /polaris/create-catalog.sh;
Review Comment:
will it be more cleaner if we just do `exec /polaris/create-catalog.sh;` as
change file permission then run without implicitly shell is a bit unnecessary.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]