mlsstart commented on code in PR #975: URL: https://github.com/apache/polaris/pull/975#discussion_r1952083049
########## site/content/in-dev/unreleased/quickstart.md: ########## @@ -51,6 +51,34 @@ If you plan to deploy Polaris inside [Docker](https://www.docker.com/), you'll n brew install --cask docker ``` +If you encounter Docker permission-related issues, you can refer to the link [gradle](https://github.com/apache/polaris/pull/971) + +you may encounter issues related to seccomp configuration. It is recommended to set the seccomp profile to "unconfined" to avoid potential permission problems. + +To set the seccomp profile to "unconfined" for a single container, you can use the following command when running the container + +```shell +docker run --security-opt seccomp=unconfined <image_name> +``` + +Replace <image_name> with the actual Docker image you want to run, such as apache/polaris:latest. + +If you want to set the seccomp profile to "unconfined" globally for all Docker containers, you need to edit the Docker daemon configuration file. Open or create /etc/docker/daemon.json and add the following content Review Comment: I agree with you. According to your suggestion, the way indeed seems out of the scope of the Polaris doc. And I've already optimized this part of the content to make it more relevant. -- 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]
