0

I'm trying to start Maven repository as Docker container with this command:

docker run -d -p 8081:8081 --name nexus sonatype/nexus3

When I do it on my windows 10 host everything is fine.

When I try the same on my macOS host I get a lot of errors in logs, finnaly Nexus3 starts somehow, but when I try to open http://localhost:8081/ it stacks forever on initializing screen.

Is there any way to start Nexus on MacOS?

Victoria Agafonova
  • 2,048
  • 10
  • 33
  • 50

2 Answers2

2

Ok. It looks line now (13.09.2021) the desidion is to use klo2k/nexus3 version of Nexus on ARM

Victoria Agafonova
  • 2,048
  • 10
  • 33
  • 50
-1

I use also this image and it's work fine on my config (macOS Big Sur with Docker Desktop 3.6.0 on iMac Intel 64 Bits).

docker pull sonatype/nexus3

docker run -d -p 8081:8081 --name nexus sonatype/nexus3

Probably you have an issue in your Nexus config.

Chris Hess
  • 129
  • 3