31 lines
693 B
YAML
31 lines
693 B
YAML
services:
|
|
n8n:
|
|
image: n8nio/n8n:2.5.0
|
|
container_name: n8n
|
|
restart: always
|
|
volumes:
|
|
- n8n_data:/home/node/.n8n
|
|
- ./local-files:/files
|
|
environment:
|
|
- N8N_HOST=n8n.lucasroyer.fr
|
|
- N8N_PORT=5678
|
|
- N8N_PROTOCOL=https
|
|
- NODE_ENV=production
|
|
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
|
|
- N8N_RUNNERS_ENABLED=true
|
|
- WEBHOOK_URL=https://n8n.lucasroyer.fr/
|
|
- GENERIC_TIMEZONE=Europe/Paris
|
|
- N8N_RESTRICT_FILE_ACCESS_TO=""
|
|
- N8N_BLOCK_FILE_ACCESS_TO_N8N_FILES=false
|
|
- UMASK=002
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
volumes:
|
|
n8n_data:
|
|
external: true
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true
|