Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
nocobase:
image: nocobase/nocobase:1.6.36
image: nocobase/nocobase:1.6.37
container_name: ${CONTAINER_NAME}
restart: always
networks:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The provided diff shows an minor update from version 1.6.36 to 1.6.37. Here are some observations and considerations:

@@ -1,6 +1,6 @@
 services:
   nocobase:
-    image: nocobase/nocobase:1.6.36
+    image: nocobase/nocobase:1.6.37
     container_name: ${CONTAINER_NAME}
     restart: always

This change only updates the Docker image tag for the NoCobase service from 1.6.36 to 1.6.37, which is a simple bug fix or upgrade without any significant changes needing consideration. The other fields (container_name and restart) remain unchanged.

No additional irregularities, potential issues, or optimization suggestions are apparent from this diff. This update can be safely applied if you need to take advantage of any features or fixes included in the newer version without any disruptions to your current configuration.

Expand Down