-
Notifications
You must be signed in to change notification settings - Fork 424
chore(deps): update n8nio/n8n docker tag to v1.87.1 #3639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| services: | ||
| homeassistant: | ||
| image: n8nio/n8n:1.86.0 | ||
| image: n8nio/n8n:1.87.1 | ||
| container_name: ${CONTAINER_NAME} | ||
| restart: always | ||
| networks: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The given patch does not contain any major issues or inaccuracies. However, some minor improvements could be made:
Updated Code (Consistent Naming):@@ -1,6 +1,6 @@
services:
homeassistant:
- image: n8nio/n8n:1.86.0
+ image: n8nio/n8n:1.87.1
container_name: CONTAINER_NAME_HOMEASSISTANT
restart: alwaysOptimized Version (Removed Empty Network Section):@@ -1,9 +1,7 @@
services:
homeassistant:
- image: n8nio/n8n:1.86.0
+ image: n8nio/n8n:1.87.1
container_name: CONTAINER_NAME_HOMEASSISTANT
restart: always
-
# Remove or comment out if no need for specific networks
# networks:Remember to replace
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The line with If you want to ensure continuity or future-proofing, it might be a good idea to check N8N's official repository for updates and releases before switching tags periodically. |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only difference between the two lines of code is the version number from
1.86.0to1.87.0. There are no issues or optimizations suggested other than updating the Docker image tag to reflect the new version.