n8n / Docker
Naveen1754's picture
Create Docker
76cb5ff verified
raw
history blame
266 Bytes
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"]