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.


CI/CD runner for GitLab pipelines
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the GitLab Runner template in Server Compass to deploy a clean, ready-to-register GitLab CI runner service on your VPS, then verify the runner container, version output, and generated config.
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 GitLab Runner in the Server Compass template catalog.

Choose the GitLab Runner template. Server Compass fills the one-shot config bootstrap service, the runner service, the persistent config volume, and the Docker socket mount.

Confirm the app name and compose services. In this run, the app was named gitlab-runner-demo; GitLab Runner does not expose a public web port by default.

Review the generated compose settings, confirm the config bootstrap and runner services, and click Deploy.

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

After deployment finishes, return to the Apps tab and confirm the GitLab Runner app is marked Running.

Verify the runner container is running, the config bootstrap completed, the GitLab Runner version command works, and the logs show the configuration loaded cleanly.

The runner container was running, the config bootstrap exited successfully, `gitlab-runner --version` returned a version, and logs showed `Configuration loaded` without missing-config errors.
It deploys a one-shot config bootstrap service and the official GitLab Runner container with persistent runner configuration and Docker socket access.
GitLab Runner does not expose a public web port in this template. Verification happens through container status, version output, config file checks, and recent logs.
Yes. The template starts the service cleanly with an initial config file, then you register the runner with GitLab using a project, group, or instance registration token.
No. The deployment guide should live on the GitLab Runner template detail page and be linked from the reusable template deployment docs page.
Prefer the command line? Follow this step-by-step guide to deploy GitLab Runner manually on your VPS.
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/gitlab-runner
cd ~/apps/gitlab-runnerCreate the following docker-compose.yml in your project directory:
services:
gitlab-runner:
image: gitlab/gitlab-runner:latest
volumes:
- runner_config:/etc/gitlab-runner
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
volumes:
runner_config:
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 80/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:80Deploy GitLab Runner with a beautiful UI instead. No SSH, no YAML editing, no terminal commands. Just click, configure, and deploy in under 3 minutes.
After deploying GitLab Runner with Server Compass, complete these steps to finish setup
Register runner with GitLab
Configure executor
Add runner tags
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting GitLab Runner
Simply download Server Compass, connect to your VPS, and select GitLab Runner from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
GitLab Runner 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 GitLab Runner backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest GitLab Runner image will be pulled and deployed with zero downtime.
GitLab Runner 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 GitLab Runner to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass