Skip to content
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

Bump nexus version 3.54 #81

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.14
FROM alpine:3.17

LABEL maintainer devops@travelaudience.com
LABEL maintainer platform@elm.sa

# java
ENV JAVA_HOME=/usr/lib/jvm/default-jvm/jre
Expand All @@ -9,7 +9,7 @@ ENV JAVA_HOME=/usr/lib/jvm/default-jvm/jre
# https://help.sonatype.com/repomanager3/download/download-archives---repository-manager-3

# nexus
ENV NEXUS_VERSION "3.39.0-01"
ENV NEXUS_VERSION "3.54.1-01"
ENV NEXUS_DOWNLOAD_URL "https://download.sonatype.com/nexus/3"
ENV NEXUS_TARBALL_URL "${NEXUS_DOWNLOAD_URL}/nexus-${NEXUS_VERSION}-unix.tar.gz"
ENV NEXUS_TARBALL_ASC_URL "${NEXUS_DOWNLOAD_URL}/nexus-${NEXUS_VERSION}-unix.tar.gz.asc"
Expand Down
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,26 @@

A container image for Sonatype Nexus Repository Manager OSS, based on Alpine Linux.

[![Docker Repository on Quay](https://quay.io/repository/travelaudience/docker-nexus/status "Docker Repository on Quay")](https://quay.io/repository/travelaudience/docker-nexus)
[![Docker Repository on Quay](https://quay.io/repository/elm-company/sonatype-nexus/status "Docker Repository on Quay")](https://quay.io/repository/elm-company/sonatype-nexus)

## Current software

* Alpine Linux 3.14
* OpenJDK JRE 8u212
* Nexus Repository Manager OSS 3.39.0 ([release notes](https://help.sonatype.com/repomanager3/product-information/release-notes/2022-release-notes/nexus-repository-3.39.0-release-notes))
* Nexus Repository Manager OSS 3.54.1 ([release notes](https://help.sonatype.com/repomanager3/product-information/release-notes/2023-release-notes/sonatype-nexus-repository-3.54.0---3.54.1-release-notes))

## Running

Running it locally (for the latest tag, check [quay.io/repository/travelaudience/docker-nexus](https://quay.io/repository/travelaudience/docker-nexus?tab=tags):
Running it locally (for the latest tag, check [quay.io/repository/elm-company/sonatype-nexus](https://quay.io/repository/elm-company/sonatype-nexus?tab=tags):

```shell
docker run -p 8081:8081 --name nexus quay.io/travelaudience/docker-nexus:3.39.0-01
docker run -p 8081:8081 --name nexus quay.io/elm-company/sonatype-nexus:3.54.1-01
```

# Releases
- 3.54.1-01
- 3.42.0-01

## Reasoning

The Official Sonatype Nexus Docker image: https://hub.docker.com/r/sonatype/nexus3/ is suitable for most use cases. But as discussed in this blog post:
Expand Down