From 231462e143a6535c4bfdb0556446a1fafe1fcc7c Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 22 Jan 2026 09:11:22 +0000 Subject: [PATCH] chore: initial commit --- .gitignore | 1 + docker-compose.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .gitignore create mode 100644 docker-compose.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ad2b221 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/local-files \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..01511b0 --- /dev/null +++ b/docker-compose.yml @@ -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