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.


Self-hosted internet archiving tool
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the ArchiveBox template in Server Compass to deploy a self-hosted internet archive on your VPS, then verify the 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 ArchiveBox in the Server Compass template catalog.

Choose the ArchiveBox template. Server Compass fills the archive service, persistent data volume, public settings, and web port.

Confirm the app name and compose service. In this run, the app was named archivebox-demo and used host port 8000.

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

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

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

Open the application URL in a browser. The ArchiveBox web UI confirms the archiving service is reachable.

The ArchiveBox web interface loaded successfully from the deployed container.
It deploys the ArchiveBox container with a persistent archive data volume and a public web port.
The tutorial used host port 8000, which maps to the ArchiveBox web UI on container port 8000.
No. Create the admin user after deployment with the ArchiveBox management command noted in the template security notes.
No. The deployment guide should live on the ArchiveBox template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy ArchiveBox yourself using Docker Compose.
Initiate a secure shell connection to your server using the command below.
# Connect to your VPS
ssh root@your-server-ip
# Or with a specific SSH key
ssh -i ~/.ssh/your-key root@your-server-ipFirst time? Docker required! Install it with: curl -fsSL https://get.docker.com | sh
Organize your deployment by creating a dedicated project folder.
# Create and navigate to project directory
mkdir -p ~/apps/archivebox
cd ~/apps/archiveboxCreate a new docker-compose.yml file and paste this configuration:
services:
archivebox:
image: archivebox/archivebox:latest
ports:
- "8000:8000"
environment:
- ALLOWED_HOSTS=*
- PUBLIC_INDEX=True
- PUBLIC_SNAPSHOTS=True
- PUBLIC_ADD_VIEW=False
volumes:
- archivebox_data:/data
restart: unless-stopped
volumes:
archivebox_data:
PORTHost port(default: 8000)Start the services and tail the logs to verify startup.
# Spin up containers
docker compose up -d
# Verify deployment
docker compose ps
# Check logs for errors
docker compose logs -fOpen the required port in your firewall to allow access.
# 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 ArchiveBox with a visual interface. Configure everything with clicks, not commands.
After deploying ArchiveBox with Server Compass, complete these steps to finish setup
Create admin user
Add URLs to archive
Configure archiving options
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting ArchiveBox
Simply download Server Compass, connect to your VPS, and select ArchiveBox from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
ArchiveBox requires a minimum of 512MB RAM. We recommend a VPS with at least 1024MB 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 ArchiveBox backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest ArchiveBox image will be pulled and deployed with zero downtime.
ArchiveBox 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 ArchiveBox to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass