From 9c4114e9faed38a3b22d76f6802954848ffc367e Mon Sep 17 00:00:00 2001 From: Romain ROCHAS Date: Fri, 10 Oct 2025 14:28:18 +0200 Subject: [PATCH 1/6] fix(template) update n8n with new required env + image version --- templates/compose/n8n-with-postgres-and-worker.yaml | 6 ++++-- templates/compose/n8n-with-postgresql.yaml | 6 +++++- templates/compose/n8n.yaml | 6 +++++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/templates/compose/n8n-with-postgres-and-worker.yaml b/templates/compose/n8n-with-postgres-and-worker.yaml index 3b9520c20..5aafddaef 100644 --- a/templates/compose/n8n-with-postgres-and-worker.yaml +++ b/templates/compose/n8n-with-postgres-and-worker.yaml @@ -7,7 +7,7 @@ services: n8n: - image: docker.n8n.io/n8nio/n8n + image: docker.n8n.io/n8nio/n8n:1.114.4 environment: - SERVICE_URL_N8N_5678 - N8N_EDITOR_BASE_URL=${SERVICE_URL_N8N} @@ -29,6 +29,7 @@ services: - N8N_RUNNERS_ENABLED=true - OFFLOAD_MANUAL_EXECUTIONS_TO_WORKERS=true - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} + - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} volumes: - n8n-data:/home/node/.n8n @@ -44,7 +45,7 @@ services: retries: 10 n8n-worker: - image: docker.n8n.io/n8nio/n8n + image: docker.n8n.io/n8nio/n8n:1.114.4 command: worker environment: - GENERIC_TIMEZONE=${GENERIC_TIMEZONE:-Europe/Berlin} @@ -62,6 +63,7 @@ services: - N8N_ENCRYPTION_KEY=${SERVICE_PASSWORD_ENCRYPTION} - N8N_RUNNERS_ENABLED=true - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} + - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} volumes: - n8n-data:/home/node/.n8n diff --git a/templates/compose/n8n-with-postgresql.yaml b/templates/compose/n8n-with-postgresql.yaml index e2435b115..bff391712 100644 --- a/templates/compose/n8n-with-postgresql.yaml +++ b/templates/compose/n8n-with-postgresql.yaml @@ -7,7 +7,7 @@ services: n8n: - image: docker.n8n.io/n8nio/n8n + image: docker.n8n.io/n8nio/n8n:1.114.4 environment: - SERVICE_URL_N8N_5678 - N8N_EDITOR_BASE_URL=${SERVICE_URL_N8N} @@ -22,6 +22,10 @@ services: - DB_POSTGRESDB_USER=$SERVICE_USER_POSTGRES - DB_POSTGRESDB_SCHEMA=public - DB_POSTGRESDB_PASSWORD=$SERVICE_PASSWORD_POSTGRES + - N8N_RUNNERS_ENABLED=${N8N_RUNNERS_ENABLED:-true} + - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} + - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} + - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} volumes: - n8n-data:/home/node/.n8n depends_on: diff --git a/templates/compose/n8n.yaml b/templates/compose/n8n.yaml index c93a660b0..d7a1cf378 100644 --- a/templates/compose/n8n.yaml +++ b/templates/compose/n8n.yaml @@ -7,7 +7,7 @@ services: n8n: - image: docker.n8n.io/n8nio/n8n + image: docker.n8n.io/n8nio/n8n:1.114.4 environment: - SERVICE_URL_N8N_5678 - N8N_EDITOR_BASE_URL=${SERVICE_URL_N8N} @@ -15,6 +15,10 @@ services: - N8N_HOST=${SERVICE_URL_N8N} - GENERIC_TIMEZONE=${GENERIC_TIMEZONE:-Europe/Berlin} - TZ=${TZ:-Europe/Berlin} + - N8N_RUNNERS_ENABLED=${N8N_RUNNERS_ENABLED:-true} + - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} + - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} + - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} volumes: - n8n-data:/home/node/.n8n healthcheck: From 21fbc3bad899552e00ef4a96dbe519e777b95689 Mon Sep 17 00:00:00 2001 From: Romain ROCHAS Date: Fri, 10 Oct 2025 14:34:23 +0200 Subject: [PATCH 2/6] fix(n8n): add DB_SQLITE_POOL_SIZE environment variable for configuration --- templates/compose/n8n.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/compose/n8n.yaml b/templates/compose/n8n.yaml index d7a1cf378..073e9f1e0 100644 --- a/templates/compose/n8n.yaml +++ b/templates/compose/n8n.yaml @@ -15,6 +15,7 @@ services: - N8N_HOST=${SERVICE_URL_N8N} - GENERIC_TIMEZONE=${GENERIC_TIMEZONE:-Europe/Berlin} - TZ=${TZ:-Europe/Berlin} + - DB_SQLITE_POOL_SIZE=${DB_SQLITE_POOL_SIZE:-3} - N8N_RUNNERS_ENABLED=${N8N_RUNNERS_ENABLED:-true} - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} From bfaf3b371de68e4cab735b7d58f0c66060c43222 Mon Sep 17 00:00:00 2001 From: Romain ROCHAS <46826777+yipfram@users.noreply.github.com> Date: Wed, 15 Oct 2025 16:01:26 +0200 Subject: [PATCH 3/6] Update templates/compose/n8n-with-postgresql.yaml Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> --- templates/compose/n8n-with-postgresql.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/compose/n8n-with-postgresql.yaml b/templates/compose/n8n-with-postgresql.yaml index bff391712..1a1592f79 100644 --- a/templates/compose/n8n-with-postgresql.yaml +++ b/templates/compose/n8n-with-postgresql.yaml @@ -26,6 +26,7 @@ services: - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} + - N8N_PROXY_HOPS=${N8N_PROXY_HOPS:-1} volumes: - n8n-data:/home/node/.n8n depends_on: From 092803ba850bfe40925efd917fbb96ae326e990e Mon Sep 17 00:00:00 2001 From: Romain ROCHAS <46826777+yipfram@users.noreply.github.com> Date: Wed, 15 Oct 2025 16:01:34 +0200 Subject: [PATCH 4/6] Update templates/compose/n8n.yaml Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> --- templates/compose/n8n.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/compose/n8n.yaml b/templates/compose/n8n.yaml index 073e9f1e0..3078516a5 100644 --- a/templates/compose/n8n.yaml +++ b/templates/compose/n8n.yaml @@ -20,6 +20,7 @@ services: - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} + - N8N_PROXY_HOPS=${N8N_PROXY_HOPS:-1} volumes: - n8n-data:/home/node/.n8n healthcheck: From 2973818046e00cfc9121d15c357c3bd5ad9cd503 Mon Sep 17 00:00:00 2001 From: Romain ROCHAS <46826777+yipfram@users.noreply.github.com> Date: Wed, 15 Oct 2025 16:24:18 +0200 Subject: [PATCH 5/6] Update templates/compose/n8n-with-postgres-and-worker.yaml Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> --- templates/compose/n8n-with-postgres-and-worker.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/compose/n8n-with-postgres-and-worker.yaml b/templates/compose/n8n-with-postgres-and-worker.yaml index 5aafddaef..e1cf7d895 100644 --- a/templates/compose/n8n-with-postgres-and-worker.yaml +++ b/templates/compose/n8n-with-postgres-and-worker.yaml @@ -65,6 +65,7 @@ services: - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} + - N8N_PROXY_HOPS=${N8N_PROXY_HOPS:-1} volumes: - n8n-data:/home/node/.n8n healthcheck: From 78f3689ecd4e51ab34eb33cbf4ca089b324561ff Mon Sep 17 00:00:00 2001 From: Romain ROCHAS <46826777+yipfram@users.noreply.github.com> Date: Wed, 15 Oct 2025 16:24:39 +0200 Subject: [PATCH 6/6] Update templates/compose/n8n-with-postgres-and-worker.yaml Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com> --- templates/compose/n8n-with-postgres-and-worker.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/compose/n8n-with-postgres-and-worker.yaml b/templates/compose/n8n-with-postgres-and-worker.yaml index e1cf7d895..5f6aa5e50 100644 --- a/templates/compose/n8n-with-postgres-and-worker.yaml +++ b/templates/compose/n8n-with-postgres-and-worker.yaml @@ -31,6 +31,7 @@ services: - N8N_BLOCK_ENV_ACCESS_IN_NODE=${N8N_BLOCK_ENV_ACCESS_IN_NODE:-true} - N8N_GIT_NODE_DISABLE_BARE_REPOS=${N8N_GIT_NODE_DISABLE_BARE_REPOS:-true} - N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=${N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS:-true} + - N8N_PROXY_HOPS=${N8N_PROXY_HOPS:-1} volumes: - n8n-data:/home/node/.n8n depends_on: