privateone commited on
Commit
e95bc5b
·
verified ·
1 Parent(s): 41f4d19

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM n8nio/n8n:latest
2
+
3
+ # Configuration environment variables
4
+ ENV N8N_PORT=7860 \
5
+ N8N_LISTEN_ADDRESS=0.0.0.0 \
6
+ N8N_PROXY_HOPS=1 \
7
+ N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true \
8
+ N8N_RUNNERS_ENABLED=true
9
+
10
+ EXPOSE 7860
11
+
12
+ #CMD ["n8n"]