
Deploy Verdaccio on Your Own Server
Verdaccio is a lightweight private npm proxy registry that allows you to have your own npm registry for free
Want to deploy Verdaccio on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.
What is Verdaccio?
Verdaccio is a simple, zero-config-required local private npm registry. No need for an entire database just to get started! Verdaccio comes out of the box with its own tiny database, and the ability to proxy other registries (eg. npmjs.org), caching the downloaded modules along the way. For those looking to extend their storage capabilities, Verdaccio supports various community-made plugins to hook into services such as Amazon's S3, Google Cloud Storage, or create your own plugin. For more details, see: https://hub.docker.com/r/verdaccio/verdaccio Enter your verdaccio Configuration parameters and click on next. It will take about a minute for the process to finish.
Self-Host Verdaccio
Follow these steps to deploy on your own server.
Install Docker
Skip this step if Docker is already installed on your server.
curl -fsSL https://get.docker.com | sh
Configure
Customize the settings below. Defaults work for most cases.
Deploy
Copy the configuration and run it on your server.
services:
verdaccio:
image: verdaccio/verdaccio:3.11.6
volumes:
- verdaccio-storage:/verdaccio/storage
- verdaccio-conf:/verdaccio/conf
- verdaccio-plugins:/verdaccio/plugins
volumes:
verdaccio-storage: {}
verdaccio-conf: {}
verdaccio-plugins: {}
Then run:
docker compose up -d
Access
Once started, access your app at http://localhost:4873
Why Self-Host Verdaccio?
Full Data Ownership
Your data stays on your servers. No third-party access.
No Monthly Fees
Pay only for your server. No per-seat or usage charges.
Complete Control
Customize, backup, and scale on your own terms.
Privacy & Compliance
Meet GDPR, HIPAA, or internal security requirements.
Technical Details
Docker Image
verdaccio/verdaccio:${_verdaccio_version}Want to go faster?
Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.
Install on any Linux server:
sh -c "$(curl -sSL https://get.senate.sh)"