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


Document management system with OCR
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Paperless-ngx template in Server Compass to deploy a self-hosted document management stack with PostgreSQL and Redis on your VPS, then verify the Paperless-ngx web UI in a browser.
Select your 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 Paperless-ngx in the Server Compass template catalog.

Choose the Paperless-ngx template. Server Compass fills the Paperless-ngx image, host port, public URL, generated secrets, PostgreSQL, Redis, and persistent document volumes.

Confirm the app name and compose services. In this run, the app was named paperless-ngx-demo and used host port 8000.

Review the generated environment values, confirm the port is available, and click Deploy Now.

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

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

Open the application URL in a browser. The Paperless-ngx web UI confirms the site is reachable.

The Paperless-ngx web UI loaded successfully in a browser.
It deploys Paperless-ngx with PostgreSQL and Redis backing services plus persistent database volumes.
The tutorial used host port 8000, which maps to the Paperless-ngx web server on container port 8000.
The tutorial verifies the clean first-run web UI because real documents, users, OCR settings, and access rules depend on the production server.
No. The deployment guide should live on the Paperless-ngx template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy Paperless-ngx yourself using Docker Compose.
Fire up your terminal application and establish a connection to your remote server.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a folder to house your Docker Compose configuration.
# Create and navigate to project directory
mkdir -p ~/apps/paperless-ngx
cd ~/apps/paperless-ngxDefine your services in a docker-compose.yml file:
services:
paperless:
image: ghcr.io/paperless-ngx/paperless-ngx:latest
ports:
- "8000:8000"
environment:
- PAPERLESS_REDIS=redis://redis:6379
- PAPERLESS_DBHOST=db
- PAPERLESS_DBNAME=paperless
- PAPERLESS_DBUSER=paperless
- PAPERLESS_DBPASS=<your-db-password>
- PAPERLESS_SECRET_KEY=<your-secret-key>
- PAPERLESS_URL=<your-paperless-url>
volumes:
- paperless_data:/usr/src/paperless/data
- paperless_media:/usr/src/paperless/media
- paperless_consume:/usr/src/paperless/consume
restart: unless-stopped
depends_on:
- db
- redis
db:
image: postgres:16-alpine
environment:
- POSTGRES_USER=paperless
- POSTGRES_PASSWORD=<your-db-password>
- POSTGRES_DB=paperless
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
redis:
image: redis:7-alpine
restart: unless-stopped
volumes:
paperless_data:
paperless_media:
paperless_consume:
postgres_data:
PORTHost port(default: 8000)PAPERLESS_URLPublic URLSECRET_KEYSecret keyDB_PASSWORDDB passwordStart your containers and verify they're running correctly.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followUpdate UFW rules to allow traffic on the application port.
# Allow the application port through firewall
sudo ufw allow 8000/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8000Skip the terminal and deploy Paperless-ngx with a visual interface. Configure everything with clicks, not commands.
Common questions about self-hosting Paperless-ngx
Simply download Server Compass, connect to your VPS, and select Paperless-ngx from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Paperless-ngx requires a minimum of 1024MB RAM. We recommend a VPS with at least 2048MB 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 Paperless-ngx backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Paperless-ngx image will be pulled and deployed with zero downtime.
Paperless-ngx 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.
Download Server Compass and deploy Paperless-ngx to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass