ShayanRl commited on
Commit
5c292ad
·
verified ·
1 Parent(s): 4a37893

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +18 -0
docker-compose.yml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ n8n:
5
+ build:
6
+ context: .
7
+ container_name: n8n
8
+ ports:
9
+ - "7860:7860"
10
+ volumes:
11
+ - n8n_data:/home/node/.n8n
12
+ environment:
13
+ - N8N_PORT=7860
14
+ - WEBHOOK_URL=https://huggingface.co/spaces/ShayanRl/n8n
15
+ restart: unless-stopped
16
+
17
+ volumes:
18
+ n8n_data: