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.


Open-source podcast hosting platform
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Castopod template in Server Compass to deploy an open-source podcast hosting platform with MariaDB, Redis, analytics salt, and podcast media storage, then verify the Castopod web UI 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 Castopod in the Server Compass template catalog.

Choose the Castopod template. Server Compass fills the Castopod image, base URL, analytics salt, MariaDB, Redis, and persistent podcast media storage.

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

Review the generated environment values, confirm the port is available, and click Deploy Now.

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

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

Open the application URL in a browser. The Castopod web UI confirms the site is reachable.

It deploys Castopod with MariaDB, Redis, and persistent Castopod and database volumes.
The tutorial used host port 8080, which maps to the Castopod web server on container port 8080.
The tutorial verifies the homepage because instance settings, admin account, podcast settings, and site settings should be configured for the real server.
No. The deployment guide should live on the Castopod template detail page and be linked from the reusable template deployment docs page.
Get your hands dirty: manual Castopod 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/castopod
cd ~/apps/castopodSet up your Docker Compose file with this configuration:
services:
castopod:
image: castopod/castopod:latest
ports:
- "8080:8000"
environment:
- CP_BASEURL=<your-base-url>
- CP_ANALYTICS_SALT=<your-analytics-salt>
- CP_DATABASE_HOSTNAME=db
- CP_DATABASE_NAME=castopod
- CP_DATABASE_USERNAME=castopod
- CP_DATABASE_PASSWORD=<your-db-password>
- CP_CACHE_HANDLER=redis
- CP_REDIS_HOST=redis
volumes:
- castopod_media:/var/www/castopod/public/media
restart: unless-stopped
depends_on:
db:
condition: service_healthy
redis:
condition: service_started
db:
image: mariadb:11
environment:
- MARIADB_ROOT_PASSWORD=<your-db-root-password>
- MARIADB_DATABASE=castopod
- MARIADB_USER=castopod
- MARIADB_PASSWORD=<your-db-password>
volumes:
- mariadb_data:/var/lib/mysql
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "healthcheck.sh --connect --innodb_initialized"]
interval: 10s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
restart: unless-stopped
volumes:
castopod_media:
mariadb_data:
PORTHost port(default: 8080)BASE_URLBase URLANALYTICS_SALTAnalytics saltDB_PASSWORDDB passwordDB_ROOT_PASSWORDRoot passwordStart 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 Castopod the easy way with Server Compass.
After deploying Castopod with Server Compass, complete these steps to finish setup
Complete installation wizard
Create podcast
Upload episodes
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Castopod
Simply download Server Compass, connect to your VPS, and select Castopod from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Castopod 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 Castopod backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Castopod image will be pulled and deployed with zero downtime.
Castopod 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 Castopod to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass