22 lines
654 B
YAML
22 lines
654 B
YAML
# Docker Compose Override für LibreBooking n8n Node
|
|
#
|
|
# WICHTIG: custom-nodes Volume NICHT als read-only (:ro) mounten!
|
|
# Der Node benötigt Schreibrechte für npm install/build.
|
|
#
|
|
# Für read-only Volumes siehe: docker-compose.readonly.yml
|
|
# und führen Sie vorher build-on-host.sh aus.
|
|
|
|
version: '3.8'
|
|
|
|
services:
|
|
n8n:
|
|
volumes:
|
|
# LibreBooking Custom Node
|
|
# OHNE :ro - Der Node muss beim Start gebaut werden können!
|
|
- ./custom-nodes:/home/node/.n8n/custom/n8n-nodes-librebooking
|
|
|
|
environment:
|
|
# Custom Nodes aktivieren
|
|
- N8N_CUSTOM_EXTENSIONS=/home/node/.n8n/custom
|
|
- N8N_COMMUNITY_NODES_ENABLED=true
|