-
Notifications
You must be signed in to change notification settings - Fork 413
chore(deps): update sonatype/nexus3 docker tag to v3.81.0 #4110
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: | ||
| nexus: | ||
| image: sonatype/nexus3:3.80.0 | ||
| image: sonatype/nexus3:3.81.0 | ||
| restart: always | ||
| container_name: ${CONTAINER_NAME} | ||
| environment: | ||
|
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. There is an error in your Docker Compose file:
Additionally, you may consider adding logging to your Nexus container for better monitoring and troubleshooting: services:
nexus:
image: sonatype/nexus3:3.81.0
restart: always
container_name: ${CONTAINER_NAME}
environment:
- X_NEXUS_LOG_LEVEL=DEBUG
volumes:
- /path/to/logs:/opt/sonatype-nexuslogsThis allows you to access log files on your host machine if needed while still keeping them within the Docker volume managed by Docker Compose. Note that this example assumes there is already a volume defined at |
||
|
|
||
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 provided code difference seems to be intended for updating the Nexus Docker image version from
3.80.0to3.81.0. There are no apparent irregularities, but here is a brief review:Image Update: The change in the
imagefield correctly updates from the older version (sonatype/nexus3:3.80.0) to the newer version (sonatype/nexus3:3.81.0). This maintains compatibility with any new features or improvements available in the latest release.Restart Policy: The
restart: alwaysstatement ensures that the Nexus container will automatically restart if it crashes, which is crucial for maintaining service availability.Environment Variables: There are not many changes listed under
environment, so these lines can likely remain unchanged unless there were specific configurations added or modified between versions, particularly those related to custom settings like database credentials or additional plugins.Container Name: The
${CONTAINER_NAME}placeholder remains unchanged, suggesting you might have already defined this environment variable elsewhere in your script or deployment configuration file.Overall, the difference appears to be straightforward and focused on an essential update of the software component. If you're unsure about other aspects such as network configurations or external dependencies, more context would be helpful for further analysis.