Files
n8n-web/docker-compose.yml

17 lines
814 B
YAML
Raw Normal View History

2025-09-11 14:15:26 +08:00
services:
web:
build: .
ports:
- "3100:3100"
environment:
- VITE_KNOWLEDGE_BASE_WEBHOOK_URL=http://localhost:5678/webhook-test/3e3b9cf1-8392-4589-a8b7-59b2c7c650c8
- VITE_MEETING_MINUTES_WEBHOOK_URL=http://localhost:5678/webhook-test/956024f9-4f0b-4617-b241-ea92127c0f8d
- VITE_INVOICE_EXTRACTOR_WEBHOOK_URL=http://localhost:5678/webhook-test/d7ef6742-31f3-4702-a0bb-0211112e7a92
- VITE_COMPETITOR_RESEARCH_WEBHOOK_URL=http://localhost:5678/webhook-test/5a3c36ab-6ffb-4d97-beaa-a75ab0ef7959
- VITE_EMAIL_AUTOMATION_WEBHOOK_URL=http://localhost:5678/webhook-test/a3e9e03e-fb4c-40dc-8528-da6e85c1b0d8
- CHOKIDAR_USEPOLLING=true
volumes:
- .:/app
- /app/node_modules
command: sh -c "npm install && npm run dev -- --host 0.0.0.0 --port 3100"