N8n Error: Command "start" not found (RESOLVED)

Resolved by setting

 volumes:
      - ./n8n_data:/home/node/.n8n

to

 volumes:
      - n8n_data:/home/node/.n8n

Hey @daniel-dpsi hope all is well. Welcome to the community.

Could you try running it with a named volume:

...
    volumes:
      - n8n_data:/home/node/.n8n
...

Thank you, I didn’t notice that at all!