I am running the n8n via docker compose file
services:
n8n:
image: docker.n8n.io/n8nio/n8n
restart: always
ports:
- "127.0.0.1:5678:5678"
environment:
- N8N_HOST=${DOMAIN_NAME}
- N8N_PORT=5678
- N8N_PROTOCOL=http
- NODE_ENV=production
- WEBHOOK_URL=http://${DOMAIN_NAME}/
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE}
- TZ=${GENERIC_TIMEZONE}
- NODES_EXCLUDE="[]"
volumes:
- n8n_data:/home/node/.n8n
- ./local_files:/files
volumes:
n8n_data:
I am unable to access the Local File Trigger. Did anyone get this working? The documentation on this is vague and unreliable.