Files changed (1) hide show
  1. Docker +14 -0
Docker ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM n8nio/n8n:latest
2
+
3
+ # 1. We MUST use 'node' to find the command
4
+ USER node
5
+
6
+ # 2. This line stops the crash (Security Bypass)
7
+ ENV N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=false
8
+
9
+ # 3. Network Setup
10
+ ENV N8N_PORT=7860
11
+ ENV N8N_HOST=0.0.0.0
12
+
13
+ # 4. Start
14
+ CMD ["n8n", "start"]