-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
44 lines (42 loc) · 1.48 KB
/
Copy pathcompose.yaml
File metadata and controls
44 lines (42 loc) · 1.48 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
name: message487-dev
services:
n8n:
image: docker.n8n.io/n8nio/n8n:2.38.1
ports:
- "127.0.0.1:5678:5678"
entrypoint: ["tini", "--", "/bin/sh", "/bootstrap/start.sh"]
environment:
N8N_HOST: localhost
N8N_PORT: "5678"
N8N_PROTOCOL: http
N8N_EDITOR_BASE_URL: http://localhost:5678
N8N_WEBHOOK_URL: http://10.0.2.2:5678/
N8N_SECURE_COOKIE: "false"
N8N_DIAGNOSTICS_ENABLED: "false"
N8N_VERSION_NOTIFICATIONS_ENABLED: "false"
N8N_TEMPLATES_ENABLED: "false"
N8N_PERSONALIZATION_ENABLED: "false"
N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS: "true"
N8N_INSTANCE_OWNER_MANAGED_BY_ENV: "true"
N8N_INSTANCE_OWNER_EMAIL: developer@message487.test
N8N_INSTANCE_OWNER_FIRST_NAME: Message487
N8N_INSTANCE_OWNER_LAST_NAME: Developer
N8N_INSTANCE_OWNER_PASSWORD_HASH: '$$2b$$05$$ZY9ZLe5jdVHCw9KXegI.yef0wjCGyZtCIxIPsai4rEFl6yS.4ozbC'
EXECUTIONS_DATA_SAVE_ON_ERROR: all
EXECUTIONS_DATA_SAVE_ON_SUCCESS: all
EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS: "true"
EXECUTIONS_DATA_PRUNE: "true"
EXECUTIONS_DATA_MAX_AGE: "168"
GENERIC_TIMEZONE: UTC
TZ: UTC
volumes:
- n8n-data:/home/node/.n8n
- ./:/bootstrap:ro
healthcheck:
test: ["CMD", "node", "-e", "fetch('http://127.0.0.1:5678/healthz/readiness').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"]
interval: 5s
timeout: 5s
retries: 60
start_period: 30s
volumes:
n8n-data: