This is an automated email from the ASF dual-hosted git repository.
yufei 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 b003886d Doc: quickstart.md add using Docker on UnionTech OS Desktop
20 Pro (#975)
b003886d is described below
commit b003886dac67b704e75c71ee2a4cba2de74b4aa1
Author: mlsstart <[email protected]>
AuthorDate: Thu Feb 13 11:46:54 2025 +0800
Doc: quickstart.md add using Docker on UnionTech OS Desktop 20 Pro (#975)
---
site/content/in-dev/unreleased/quickstart.md | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/site/content/in-dev/unreleased/quickstart.md
b/site/content/in-dev/unreleased/quickstart.md
index 7bace12f..26c69503 100644
--- a/site/content/in-dev/unreleased/quickstart.md
+++ b/site/content/in-dev/unreleased/quickstart.md
@@ -51,6 +51,14 @@ If you plan to deploy Polaris inside
[Docker](https://www.docker.com/), you'll n
brew install --cask docker
```
+There could be a [Docker permission
issues](https://github.com/apache/polaris/pull/971) related to seccomp
configuration. To resolve these issues, set the `seccomp` profile to
"unconfined" when running a container.For example:
+
+```shell
+docker run --security-opt seccomp=unconfined apache/polaris:latest
+```
+
+Note: Setting the seccomp profile to "unconfined" disables the default system
call filtering, which may pose security risks. Use this configuration with
caution, especially in production environments.
+
Once installed, make sure Docker is running.
#### From Source