Setting up Nexus On Docker

Yasassri Ratnayake
3 min readJun 3, 2020
Photo by chuttersnap on Unsplash

In this post, I will be explaining how to set up a nexus repository with docker.

Nexus is an artifact repository which manages software “artifacts” required for the development. If you develop software, your builds can download dependencies from Nexus and can publish artifacts to Nexus creating a way to share artifacts within an organization.

Prerequisites: Docker should be installed in your machine and the machine should have an active internet connection.

So let’s get started.

Step 01

First, we need to create a directory in the host machine to persist nexus data. If you do not do this data will be lost upon container restart.

Create a directory and set correct permissions using the following command.

mkdir /some/dir/nexus-data
sudo chown -R 200 /some/dir/nexus-data

Step 02

Then start the nexus docker image with the following command.

sudo docker run -d -p 8081:8081 — name nexus -v /home/ubuntu/nexus/nexus-data:/nexus-data sonatype/nexus3:3.23.0

Then check whether the container is running

sudo docker ps

Now copy the container ID from the output of the above command.

Then let’s check the logs of the container.

sudo docker logs -f <CONTAINER ID> 
or
sudo docker logs -f nexus

If you see the above logs that means the nexus server started successfully.

Step 03

Now in order to access the admin console you need to get the admin password. Which will be generated in the nexus-data directory the password will be stored in a file called. /nexus-data/admin.password.

After grabbing the password from this file navigate to the following URL.

http://<LocalIP or Remote IP>:8081/

And click on login and enter admin as the username and add the password you just grabbed earlier.

Then you will be asked to complete a Wizard which will let you change the password and set a few additional configurations. And finally you should be able to see your repositories.

Now we have a running Nexus repository set with docker. Please drop a message if you have any questions.

--

--