n8n-nodes-starter/docker-compose.yml
2023-08-15 11:25:23 +02:00

20 lines
361 B
YAML

version: "3"
services:
n8n:
image: n8n-custom-nodes
restart: unless-stopped
build:
dockerfile: ./docker/Dockerfile
context: .
ports:
- "5678:5678"
environment:
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
- N8N_LOG_LEVEL=debug
volumes:
- n8n-data:/home/node/.n8n
volumes:
n8n-data:
name: n8n-data