Files
docker-compose-files/n8n/compose.yaml
T
2025-12-19 15:47:05 +01:00

29 lines
761 B
YAML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
services:
n8n:
image: n8nio/n8n:1.123.7
restart: unless-stopped
container_name: n8n
deploy:
resources:
limits:
memory: 2G
ports:
- 9678:5678
volumes:
- ./n8n-data:/home/node/.n8n
- /media/Daten/:/mnt/heimserver-daten
environment:
- DB_TYPE=mariadb
- DB_MYSQLDB_HOST=192.168.178.170
- DB_MYSQLDB_PORT=3306
- DB_MYSQLDB_DATABASE=n8n
- DB_MYSQLDB_USER=n8n
- DB_MYSQLDB_PASSWORD=dbpass
- N8N_BASIC_AUTH_ACTIVE=true
- N8N_BASIC_AUTH_USER=admin
- N8N_BASIC_AUTH_PASSWORD="OvTCSDZqpA#NfitX^dP1"
- GENERIC_TIMEZONE=Europe/Berlin
- N8N_SECURE_COOKIE=false
- N8N_HOST=192.168.178.183 # IPAdresse des Containers
networks: {}