Compare commits
20
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db9d5939fb | ||
|
|
51c7190946 | ||
|
|
ba71403a69 | ||
|
|
d7c4aa46b5 | ||
|
|
9d5952d416 | ||
|
|
95bdb7ca81 | ||
|
|
b515b233f0 | ||
|
|
5260a4aa05 | ||
|
|
0abac7df49 | ||
|
|
63dd3e0f94 | ||
|
|
b8a8c5ca88 | ||
|
|
b4f10e64d2 | ||
|
|
b3c6c364f9 | ||
|
|
068485f2d6 | ||
|
|
93dc4b8bb6 | ||
|
|
09c06ecbc4 | ||
|
|
8b089791f6 | ||
|
|
d09218c03a | ||
|
|
4fa5340e4c | ||
|
|
a659454cab |
@@ -21,9 +21,6 @@ COMPOSE_FILE="compose.yml"
|
|||||||
# SSO using traefik-forward-auth
|
# SSO using traefik-forward-auth
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.sso.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.sso.yml"
|
||||||
|
|
||||||
# Disable user management completely, useful for SSO
|
|
||||||
#N8N_USER_MANAGEMENT_DISABLED=false
|
|
||||||
|
|
||||||
# Basic auth
|
# Basic auth
|
||||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.basicauth.yml"
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.basicauth.yml"
|
||||||
#N8N_BASIC_AUTH_ACTIVE=true
|
#N8N_BASIC_AUTH_ACTIVE=true
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
---
|
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
# Compose for PostGres mode instead of the default sqlite mode.
|
# Compose for PostGres mode instead of the default sqlite mode.
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
@@ -17,7 +14,7 @@ services:
|
|||||||
- db_password
|
- db_password
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: postgres:16
|
image: pgautoupgrade/pgautoupgrade:18-alpine
|
||||||
networks:
|
networks:
|
||||||
- internal_network
|
- internal_network
|
||||||
environment:
|
environment:
|
||||||
@@ -33,7 +30,7 @@ services:
|
|||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "pg_isready", "-U", "root", "-d", "n8n"]
|
test: ["CMD", "pg_isready", "-U", "root", "-d", "n8n"]
|
||||||
volumes:
|
volumes:
|
||||||
- 'postgresql_data:/var/lib/postgresql/data'
|
- 'postgresql_data:/var/lib/postgresql'
|
||||||
entrypoint: /docker-entrypoint.sh
|
entrypoint: /docker-entrypoint.sh
|
||||||
deploy:
|
deploy:
|
||||||
labels:
|
labels:
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
---
|
|
||||||
|
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
+4
-7
@@ -1,9 +1,6 @@
|
|||||||
---
|
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: n8nio/n8n:1.81.2
|
image: n8nio/n8n:2.34.2
|
||||||
environment:
|
environment:
|
||||||
- N8N_PERSONALIZATION_ENABLED
|
- N8N_PERSONALIZATION_ENABLED
|
||||||
- N8N_DIAGNOSTICS_ENABLED
|
- N8N_DIAGNOSTICS_ENABLED
|
||||||
@@ -28,9 +25,9 @@ services:
|
|||||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||||
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
|
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
|
||||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
|
- "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.scheme=https"
|
||||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
|
- "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.permanent=true"
|
||||||
- "coop-cloud.${STACK_NAME}.version=1.0.0+1.81.2"
|
- "coop-cloud.${STACK_NAME}.version=3.2.1+2.34.2"
|
||||||
- "backupbot.backup=true"
|
- "backupbot.backup=true"
|
||||||
- "backupbot.backup.path=/home/node/.n8n"
|
- "backupbot.backup.path=/home/node/.n8n"
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
There are lots of changes between v1.81 and v1.114, but seems like there's
|
||||||
|
only one breaking change involving pyiode/python runners.
|
||||||
|
See here more for info: https://docs.n8n.io/release-notes/#n8n11132
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
This is a major release from n8n. There have been lots of changes,
|
||||||
|
some of which that need manual migration before update.
|
||||||
|
|
||||||
|
You can see the summary of breaking changes here: https://docs.n8n.io/2-0-breaking-changes/
|
||||||
|
|
||||||
|
And you can follow the guide of the migration tool here: https://docs.n8n.io/migration-tool-v2/
|
||||||
Reference in New Issue
Block a user