From cc2a2d91732bda844c2e6a093656abcc21e82b57 Mon Sep 17 00:00:00 2001 From: Gualter Augusto <35470944+gualterandre@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:38:01 +0000 Subject: [PATCH] added permissions instruction to docker custom CA docs (#2710) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ --- .../configuration-examples/custom-certificate-authority.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/hosting/configuration/configuration-examples/custom-certificate-authority.md b/docs/hosting/configuration/configuration-examples/custom-certificate-authority.md index a3d216758..f35f634d1 100644 --- a/docs/hosting/configuration/configuration-examples/custom-certificate-authority.md +++ b/docs/hosting/configuration/configuration-examples/custom-certificate-authority.md @@ -43,3 +43,9 @@ services: - 5678:5678 image: docker.n8n.io/n8nio/n8n ``` + +You should also give the right permissions to the imported certs. You can do this once the container is running (assuming n8n as the container name): + +```bash +docker exec --user 0 n8n chown -R 1000:1000 /opt/custom-certificates +```