Common issues
Command failed: <command> /bin/sh: <command>: not found
# Find n8n's container ID, it will be the first column docker ps | grep n8n # Try to execute the command within the running container docker container exec <container_ID> <command_to_run># Start up a new container that runs the command instead of n8n # Use the same image and tag that you use to run n8n normally docker run -it --rm --entrypoint /bin/sh docker.n8n.io/n8nio/n8n -c <command_to_run>
Error: stdout maxBuffer length exceeded
PowerShell commands get truncated at line breaks
Last updated
Was this helpful?