From 080fc514e6a8485430028962cf8b29e5fa03a9d7 Mon Sep 17 00:00:00 2001 From: pemontto <939704+pemontto@users.noreply.github.com> Date: Mon, 10 Mar 2025 21:07:30 +1100 Subject: [PATCH] fix(core): Correct NODE_OPTIONS export syntax for custom certificates (#13779) --- docker/images/n8n/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/images/n8n/docker-entrypoint.sh b/docker/images/n8n/docker-entrypoint.sh index 2205826e4c..1f5e6e4166 100755 --- a/docker/images/n8n/docker-entrypoint.sh +++ b/docker/images/n8n/docker-entrypoint.sh @@ -1,7 +1,7 @@ #!/bin/sh if [ -d /opt/custom-certificates ]; then echo "Trusting custom certificates from /opt/custom-certificates." - export NODE_OPTIONS=--use-openssl-ca $NODE_OPTIONS + export NODE_OPTIONS="--use-openssl-ca $NODE_OPTIONS" export SSL_CERT_DIR=/opt/custom-certificates c_rehash /opt/custom-certificates fi