-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.debug.yaml
More file actions
31 lines (29 loc) · 883 Bytes
/
compose.debug.yaml
File metadata and controls
31 lines (29 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
version: "3.8"
services:
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: adscaler-n8n-debug
restart: unless-stopped
ports:
- "5678:5678"
- "9229:9229" # Node.js debug port
environment:
- N8N_HOST=${N8N_HOST:-localhost}
- N8N_PORT=5678
- N8N_PROTOCOL=${N8N_PROTOCOL:-http}
- NODE_ENV=development
- WEBHOOK_URL=${WEBHOOK_URL:-http://localhost:5678/}
- GENERIC_TIMEZONE=${GENERIC_TIMEZONE:-America/New_York}
- N8N_BASIC_AUTH_ACTIVE=${N8N_BASIC_AUTH_ACTIVE:-false}
- N8N_EDITOR_BASE_URL=${N8N_EDITOR_BASE_URL:-http://localhost:5678}
- N8N_LOG_LEVEL=debug
- N8N_LOG_OUTPUT=console
volumes:
- ./n8n-data:/home/node/.n8n
- ./n8n-hosting:/workflows:ro
networks:
- adscaler-network
networks:
adscaler-network:
name: adscaler-network
driver: bridge