chore: initial commit
This commit is contained in:
29
docker-compose.yml
Normal file
29
docker-compose.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
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
|
||||
networks:
|
||||
- reverse-proxy
|
||||
|
||||
|
||||
volumes:
|
||||
n8n_data:
|
||||
|
||||
networks:
|
||||
reverse-proxy:
|
||||
external: true
|
||||
Reference in New Issue
Block a user