Open the server Apps tab
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Universal artifact repository manager
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Nexus Repository template in Server Compass to deploy a self-hosted artifact repository manager on your VPS, then verify the Nexus web UI in a browser.
Select the tutorial-vps VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Nexus Repository in the Server Compass template catalog.

Choose the Nexus Repository template. Server Compass fills the Nexus service, persistent data volume, and web port.

Confirm the app name and compose services. In this run, the app was named nexus-demo and used host port 8081.

Review the generated compose settings, confirm the web port is available, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Nexus Repository image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Nexus Repository app is marked Running with its application URL available.

Click Open Application or open the application URL in a browser. The Nexus Repository Manager web UI confirms the artifact repository is reachable and ready for final setup.

The Nexus Repository web UI loaded successfully in a browser.
It deploys the Sonatype Nexus Repository Manager container with a persistent Nexus data volume.
The tutorial used host port 8081, which maps to the Nexus Repository web UI on container port 8081.
A fresh Nexus Repository deployment is considered reachable when the web UI loads. Completing setup and creating repositories depends on production repository policy.
No. The deployment guide should live on the Nexus Repository template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy Nexus Repository yourself using Docker Compose.
Connect to your remote server using SSH. Make sure you have your server credentials ready.
# Log into your server
ssh root@<your-server-ip>
# If using key-based auth
ssh -i ~/.ssh/my-key root@<your-server-ip>First time? Docker not installed? Run: curl -fsSL https://get.docker.com | sh
Set up a directory to store your Docker configuration.
# Create and navigate to project directory
mkdir -p ~/apps/nexus
cd ~/apps/nexusAdd this configuration to your docker-compose.yml file:
services:
nexus:
image: sonatype/nexus3:latest
ports:
- "8081:8081"
volumes:
- nexus_data:/nexus-data
restart: unless-stopped
volumes:
nexus_data:
PORTHost port(default: 8081)Execute the deployment and check the container status.
# Deploy the application
docker compose up -d
# Check container health
docker compose ps
# Monitor logs
docker compose logs -f --tail=100Enable network access by updating your firewall rules.
# Allow the application port through firewall
sudo ufw allow 8081/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8081Skip the terminal and deploy Nexus Repository with a visual interface. Configure everything with clicks, not commands.
After deploying Nexus Repository with Server Compass, complete these steps to finish setup
Get initial admin password
Complete setup wizard
Create repositories
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Nexus Repository
Simply download Server Compass, connect to your VPS, and select Nexus Repository from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Nexus Repository requires a minimum of 2048MB RAM. We recommend a VPS with at least 4096MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Nexus Repository backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Nexus Repository image will be pulled and deployed with zero downtime.
Nexus Repository is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.

Open-source backend in a single file with realtime database, auth, and file storage

Open-source backend-as-a-service - self-hosted Firebase alternative

Open-source backend framework with dashboard

Full Supabase self-hosted with Kong, GoTrue Auth, Realtime, and Studio
Download Server Compass and deploy Nexus Repository to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass