Initiale Version

This commit is contained in:
Marc Blatter 2025-11-05 12:19:43 +00:00
parent d08408b432
commit b53ac477f2
1 changed files with 25 additions and 0 deletions

25
compose_n8n.yaml Normal file
View File

@ -0,0 +1,25 @@
version: "3.8"
services:
# -------------------
# n8n
# -------------------
n8n:
image: n8nio/n8n:latest
container_name: n8n
ports:
- "5678:5678" # Lokal
environment:
- GENERIC_TIMEZONE=Europe/Zurich
- TZ=Europe/Zurich
- PUID=1000
- PGID=1000
- N8N_HOST=workflow.bizmark.ch
- N8N_PORT=5678
- N8N_PROTOCOL=https
- WEBHOOK_URL=https://workflow.bizmark.ch/
volumes:
- /opt/n8n/data:/home/node/.n8n
- /opt/n8n/logs:/opt/n8n-logs
- /var/run/docker.sock:/var/run/docker.sock # Docker-Socket mounten
restart: unless-stopped