Independent testing Updated April 2026 387 self-hosting guides 5 VPS providers tested

guide

Paperclip VPS Guide (2026): Self-Host Your Document Manager

Complete guide to running Paperclip on a VPS in 2026. Covers what Paperclip is, why self-host, VPS comparison, and Docker installation steps.

Paperclip VPS Guide (2026): Self-Host Your Document Manager

Managing documents on third-party cloud services means trusting them with your data, living with their storage limits, and paying recurring subscription fees. Paperclip solves this by giving you a self-hosted document management system you fully control — searchable, taggable, OCR-enabled, and accessible from a web browser.

Deploying Paperclip on a VPS is the recommended approach: you get a stable URL, persistent storage, and server-grade uptime without the overhead of managing physical hardware.

What is Paperclip?

Paperclip is an open-source, Docker-based document management application designed for individuals and teams who want to store, organize, and retrieve documents from their own infrastructure.

Key capabilities:

Why Self-Host on a VPS?

Privacy: Your documents never leave your infrastructure. No vendor analytics, no third-party AI training on your data.

Cost: A €4–6/mo VPS is cheaper than most document management SaaS subscriptions after the first year.

Control: You choose the retention policy, backup schedule, and who has access.

Performance: NVMe-backed VPS storage is fast for local document retrieval and OCR jobs.

VPS Requirements

TiervCPURAMStorageUse Case
Minimum11GB20GBPersonal, no OCR
Recommended22GB50GBPersonal + OCR
Team2–44–8GB100GB+Multi-user production

VPS Provider Comparison

ProviderPricevCPURAMStorageVerdict
Contabo€5.99/mo48GB200GB NVMeBest value for storage
Hetzner Cloud€4.15/mo24GB40GB NVMeBest EU price-performance
DigitalOcean$6/mo11GB25GB SSDEasiest for beginners
Vultr$6/mo11GB25GB SSDGood global coverage
Linode (Akamai)$5/mo11GB25GB SSDReliable, good support

Quick Installation on a VPS

Once your VPS is provisioned with Ubuntu 22.04 or Debian 12, install Docker and run Paperclip:

1. Install Docker

curl -fsSL https://get.docker.com | sh

2. Run Paperclip with Docker

docker run -d \
  --name paperclip \
  --restart unless-stopped \
  -p 8080:8080 \
  -v paperclip_data:/data \
  paperclip/paperclip:latest

3. Access the web UI

Navigate to http://YOUR_VPS_IP:8080 in your browser to complete setup.

4. (Optional) Reverse proxy with Caddy

# /etc/caddy/Caddyfile
docs.yourdomain.com {
    reverse_proxy localhost:8080
}

Choosing the Right Provider

Next Steps

After installation, consider:


For the full VPS comparison, visit selfhostvps.com/en/best/.