From 480faed80cee7a44fef12d719b01bb4ee7d7a01e Mon Sep 17 00:00:00 2001 From: chris-wozniak Date: Thu, 10 Sep 2026 21:49:43 -0400 Subject: [PATCH] Document multiple secrets files --- src/content/chainlink-nodes/configuring-nodes.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/chainlink-nodes/configuring-nodes.mdx b/src/content/chainlink-nodes/configuring-nodes.mdx index 6c8ed77e60f..b2452a6d169 100644 --- a/src/content/chainlink-nodes/configuring-nodes.mdx +++ b/src/content/chainlink-nodes/configuring-nodes.mdx @@ -119,10 +119,10 @@ Test your node to verify that it works as intended. If you are using a VPS, open ## Using multiple config files -You can use multiple config and secrets files. The config settings from each file are applied in the order that you specify when you run your node. Duplicated fields override values specified in earlier config files. This allows you to create a common config that applies to many nodes with specific configs for nodes that need unique configuration settings. Specifying multiple secrets files is invalid. +You can use multiple config and secrets files. The config settings from each file are applied in the order that you specify when you run your node. Duplicated fields override values specified in earlier config files. This allows you to create a common config that applies to many nodes with specific configs for nodes that need unique configuration settings. Secret fields from multiple secrets files are merged, but each secret field can appear in only one file. Duplicated secret fields are invalid. -To specify multiple config files, add additional `-config` flags to the `docker run` command: +To specify multiple config or secrets files, add additional `-config` or `-secrets` flags to the `docker run` command: ```shell -docker run --platform linux/x86_64/v8 --name chainlink -v ~/.chainlink:/chainlink -it -p 6688:6688 --add-host=host.docker.internal:host-gateway smartcontract/chainlink:1.13.0 -config /chainlink/config.toml -config /chainlink/config2.toml -config /chainlink/config3.toml -secrets /chainlink/secrets.toml node start +docker run --platform linux/x86_64/v8 --name chainlink -v ~/.chainlink:/chainlink -it -p 6688:6688 --add-host=host.docker.internal:host-gateway smartcontract/chainlink:1.13.0 -config /chainlink/config.toml -config /chainlink/config2.toml -config /chainlink/config3.toml -secrets /chainlink/secrets.toml -secrets /chainlink/secrets2.toml node start ```