Initiale Version

This commit is contained in:
Marc Blatter 2026-03-24 15:16:02 +00:00
parent c5378b72f4
commit 3392ef1c18
1 changed files with 22 additions and 0 deletions

22
compose-workflow.yml Normal file
View File

@ -0,0 +1,22 @@
# compose-workflow.yml
# https://git.bizmark.cloud/marc/bizMark.git
services:
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