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.


Web-based MySQL/MariaDB database management tool
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the phpMyAdmin template in Server Compass to deploy a web-based MySQL and MariaDB administration tool on your VPS, then verify the login 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 phpMyAdmin in the Server Compass template catalog.

Choose the phpMyAdmin template. Server Compass fills the phpMyAdmin service, arbitrary-server login mode, optional database host/port fields, and web port.

Confirm the app name and compose services. In this run, the app was named phpmyadmin-demo and used host port 3001.

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

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

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

Click Open Application or open the application URL in a browser. The phpMyAdmin login form confirms the web database administration interface is reachable.

It deploys the phpMyAdmin container with arbitrary-server login enabled, so you can enter the intended MySQL or MariaDB host on the login page.
The tutorial used host port 3001, which maps to the phpMyAdmin web UI on container port 80.
A fresh phpMyAdmin deployment is considered reachable when the login form loads. Connecting to a database requires your own database hostname, username, and password.
No. The deployment guide should live on the phpMyAdmin template detail page and be linked from the reusable template deployment docs page.
Get your hands dirty: manual phpMyAdmin deployment guide for developers.
Access your server's command line by opening a terminal and running the SSH command below.
# SSH into your server
ssh root@your-server-ip
# Using a custom SSH key
ssh -i ~/.ssh/id_rsa root@your-server-ipFirst time? Need Docker? Install it: curl -fsSL https://get.docker.com | sh
Set up the folder structure for your Docker deployment.
# Create and navigate to project directory
mkdir -p ~/apps/phpmyadmin
cd ~/apps/phpmyadminSet up your Docker Compose file with this configuration:
services:
phpmyadmin:
image: phpmyadmin:latest
ports:
- "8080:80"
environment:
- PMA_ARBITRARY=1
- PMA_HOST=<your-pma-host>
- PMA_PORT=3306
- UPLOAD_LIMIT=100M
restart: unless-stopped
PORTHost port for phpMyAdmin web interface(default: 8080)PMA_HOSTDatabase server hostnamePMA_PORTDatabase server port(default: 3306)Start all services defined in your compose file.
# Start the containers in detached mode
docker compose up -d
# Check if containers are running
docker compose ps
# View logs
docker compose logs -fOpen the port so you can access the application externally.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Why type commands when you can click? Deploy phpMyAdmin the easy way with Server Compass.
After deploying phpMyAdmin with Server Compass, complete these steps to finish setup
Open phpMyAdmin in browser
Enter your MySQL/MariaDB host, username, and password
Start managing your databases
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting phpMyAdmin
Simply download Server Compass, connect to your VPS, and select phpMyAdmin from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
phpMyAdmin requires a minimum of 128MB 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 phpMyAdmin backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest phpMyAdmin image will be pulled and deployed with zero downtime.
phpMyAdmin 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.

Open-source backend in a single file with realtime database, auth, and file storage

Open-source backend-as-a-service - self-hosted Firebase alternative

Open-source backend framework with dashboard

Full Supabase self-hosted with Kong, GoTrue Auth, Realtime, and Studio
Download Server Compass and deploy phpMyAdmin to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass