add main server

This commit is contained in:
rebel onion 2025-06-15 14:21:05 -05:00
parent 2f3f0b7820
commit 50124a7efa
18 changed files with 405 additions and 0 deletions

View file

@ -0,0 +1,17 @@
services:
n8n:
container_name: n8n
image: n8nio/n8n:latest
ports:
- "5678:5678"
volumes:
- n8n_data:/home/node/.n8n
- /var/run/docker.sock:/var/run/docker.sock
group_add:
- "996"
environment:
- N8N_SECURE_COOKIE=false
- TZ=America/Chicago
restart: unless-stopped
volumes:
n8n_data: