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.


Container management UI for Docker and Kubernetes
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Portainer template in Server Compass to deploy a Docker management UI on your VPS, then verify the initial administrator setup screen 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 Portainer in the Server Compass template catalog.

Choose the Portainer template. Server Compass fills the Portainer service, persistent data volume, HTTP port, HTTPS port, and Docker socket mount.

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

Review the generated port bindings, confirm the HTTP and HTTPS ports are available, and click Deploy Now.

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

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

Open the application URL in a browser. The Portainer initial administrator setup screen confirms the container management UI is reachable and ready for first-user setup.

The Portainer web app loaded successfully in a browser and displayed the initial administrator setup screen.
It deploys the Portainer Community Edition container with a persistent data volume, the Docker socket mounted for local Docker management, and HTTP/HTTPS web ports.
The tutorial used host port 9000, which maps to the Portainer HTTP UI on container port 9000.
A fresh Portainer deployment is considered reachable when the administrator setup screen loads. The public guide stops before creating real administrator credentials.
No. The deployment guide should live on the Portainer template detail page and be linked from the reusable template deployment docs page.
Learn how to self-host Portainer with this hands-on deployment guide.
Open a terminal session and log into your VPS. Replace the placeholder with your actual IP.
# Connect via SSH
ssh root@your-vps-ip
# Alternative with key file
ssh -i /path/to/key root@your-vps-ipFirst time? Make sure Docker is installed on your VPS. Run: curl -fsSL https://get.docker.com | sh
Create a workspace for your deployment files.
# Create and navigate to project directory
mkdir -p ~/apps/portainer
cd ~/apps/portainerConfigure your containers with this Docker Compose setup:
services:
portainer:
image: portainer/portainer-ce:latest
ports:
- "9000:9000"
- "9443:9443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
restart: unless-stopped
volumes:
portainer_data:
PORTHTTP port(default: 9000)HTTPS_PORTHTTPS port(default: 9443)Spin up the containers and verify the deployment.
# Start all services
docker compose up -d
# List running containers
docker compose ps
# Watch the logs
docker compose logs -fAllow incoming traffic on the application port.
# Allow the application port through firewall
sudo ufw allow 9000/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:9000Let Server Compass handle the complexity. Deploy Portainer with a simple, intuitive interface.
After deploying Portainer with Server Compass, complete these steps to finish setup
Create admin account
Add Docker environment
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Portainer
Simply download Server Compass, connect to your VPS, and select Portainer from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Portainer requires a minimum of 256MB 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 Portainer backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Portainer image will be pulled and deployed with zero downtime.
Portainer 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 Portainer to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass