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:
discourse:
image: bitnami/discourse:3.4.3
image: bitnami/discourse:3.4.4
container_name: ${CONTAINER_NAME}
restart: always
networks:
Expand Down Expand Up @@ -33,7 +33,7 @@
labels:
createdBy: "Apps"
sidekiq:
image: bitnami/discourse:3.4.3
image: bitnami/discourse:3.4.4
container_name: ${CONTAINER_NAME}-sidekiq
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 YAML code snippet contains no errors or issues. It correctly changes the image reference from version 3.4.3 to 3.4.4 for both the discourse and sidekiq services in a Docker Compose configuration file. The change ensures that any newer features or bug fixes introduced in version 3.4.4 are applied where applicable.

For optimization, there may be general best practices related to updating container images based on available security patches but these would not apply to this specific case of an updated tag within the same major release series (3.x.x). However, ensuring all containers are running the latest patch level is generally recommended practice to maintain stability and protect against vulnerabilities.

Expand Down