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.

Modern flat-file CMS with no database required
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Grav template in Server Compass to deploy a self-hosted modern flat-file CMS with no database required on your VPS, then verify the Grav first-run page 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 Grav in the Server Compass template catalog.

Choose the Grav template. Server Compass fills the Grav image, host port, timezone, and persistent config volume.

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

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

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

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

Click Open Application or open the application URL in a browser. The Grav page confirms the deployed app is reachable and ready for site setup.

The Grav app loaded successfully in a browser and displayed the first-run page.
It deploys Grav with a persistent config volume and no database service.
The tutorial used host port 8080, which maps to the Grav web server on container port 80.
A fresh Grav deployment is considered reachable when the first-run page or homepage loads. Continuing further would require creating a site account, so the public guide verifies the safe pre-setup page.
No. The deployment guide should live on the Grav template detail page and be linked from the reusable template deployment docs page.
For terminal enthusiasts: deploy Grav manually with these simple steps.
Begin by establishing a secure connection to your server through the terminal.
# 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 dedicated folder for your application files.
# Create and navigate to project directory
mkdir -p ~/apps/grav
cd ~/apps/gravCreate the following docker-compose.yml in your project directory:
services:
grav:
image: lscr.io/linuxserver/grav:latest
ports:
- "8080:80"
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- grav_config:/config
restart: unless-stopped
volumes:
grav_config:
PORTHost port to expose(default: 8080)Run Docker Compose to launch your application.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followConfigure UFW to allow traffic to your application.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Deploy Grav without touching the command line. Server Compass gives you a clean UI for one-click deployments.
After deploying Grav with Server Compass, complete these steps to finish setup
Access the admin panel at /admin
Create admin account on first visit
Install plugins and themes
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Grav
Simply download Server Compass, connect to your VPS, and select Grav from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Grav 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 Grav backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Grav image will be pulled and deployed with zero downtime.
Grav 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 Grav to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass