Hey @abhilash,
in case you want to exclude nodes completly from n8n you can use the Env Variable NODES_EXCLUDE to list all the nodes you want to exclude.
An example docker run command would look like this
It will but that is not the recommended approach as you would need to make that change every time a new release comes out. It would be easier to just the environment variable option and use either NODES_EXCLUDE or if there are a lot to exclude use NODES_INCLUDE
Hi @marcus,
I am using the command docker run -it --rm -p 5678:5678 --name n8n -e NODES_EXCLUDE=‘[“n8n-nodes-base.executeCommand”,“n8n-nodes-base.ssh”]’ n8nio/n8n:0.195.5 to disable the nodes. But nodes are still there.
I am attaching the .env file.
Please guide me if I am making any mistake while adding the command in .env file
Thanks @Jon for checking on.
All good. I had made mistake not mapping node_exclude variable in docker-compose file.
After mapping variable at both places its working fine
I noticed you have pinged @marcus about this same question on another thread, If you can try and not split one question over 2 threads that would a massive help and won’t take us both of us away while we look into it.
To answer your question are you asking about Workflows and the editor or the Workflow Templates?
Hi @Jon,
Sure I will keep posting the doubts on single thread.
I want to disable the workflows in workflow templates.
I am attaching the screenshot for workflow template page.
If it is the individual workflows you can’t disable those, The options for this would be to either build your own workflow template service and tell n8n to use that or disable the feature fully.