Spaces:
No application file
No application file
| FROM n8nio/n8n:latest | |
| # 1. We MUST use 'node' to find the command | |
| USER node | |
| # 2. This line stops the crash (Security Bypass) | |
| ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false | |
| # 3. Network Setup | |
| ENV N8N_PORT=7860 | |
| ENV N8N_HOST=0.0.0.0 | |
| # 4. Start | |
| CMD ["n8n", "start"] |