n8n / docker-compose.yml
ShayanRl's picture
Create docker-compose.yml
5c292ad verified
raw
history blame contribute delete
314 Bytes
version: '3.8'
services:
n8n:
build:
context: .
container_name: n8n
ports:
- "7860:7860"
volumes:
- n8n_data:/home/node/.n8n
environment:
- N8N_PORT=7860
- WEBHOOK_URL=https://huggingface.co/spaces/ShayanRl/n8n
restart: unless-stopped
volumes:
n8n_data: