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 forum and community platform
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Discourse template in Server Compass to deploy a self-hosted community discussion platform with persistent Discourse, PostgreSQL, and Redis volumes on your VPS, then verify the Discourse 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 Discourse in the Server Compass template catalog.

Choose the Discourse template. Server Compass fills the Discourse image, host port, published server URL, and persistent Discourse, PostgreSQL, and Redis volumes.

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

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 Discourse image, starts the container, and verifies the stack.

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

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

It deploys the Bitnami Discourse stack with Discourse, Sidekiq, PostgreSQL, and Redis services plus persistent application, database, and Redis volumes.
The tutorial used host port 3000, which maps to the Discourse web server on container port 3000.
The tutorial verifies the clean first-run web UI because real library paths, users, metadata providers, and remote access settings depend on the production server.
No. The deployment guide should live on the Discourse template detail page and be linked from the reusable template deployment docs page.
Want full control? Here's how to deploy Discourse yourself using Docker Compose.
Connect to your remote server using SSH. Make sure you have your server credentials ready.
# Log into your server
ssh root@<your-server-ip>
# If using key-based auth
ssh -i ~/.ssh/my-key root@<your-server-ip>First time? Docker not installed? Run: curl -fsSL https://get.docker.com | sh
Set up a directory to store your Docker configuration.
# Create and navigate to project directory
mkdir -p ~/apps/discourse
cd ~/apps/discourseAdd this configuration to your docker-compose.yml file:
services:
discourse:
image: bitnami/discourse:latest
ports:
- "80:3000"
environment:
- DISCOURSE_HOST=<your-discourse-host>
- DISCOURSE_DATABASE_HOST=postgresql
- DISCOURSE_DATABASE_NAME=discourse
- DISCOURSE_DATABASE_USER=discourse
- DISCOURSE_DATABASE_PASSWORD=<your-db-password>
- DISCOURSE_REDIS_HOST=redis
- DISCOURSE_USERNAME=admin
- DISCOURSE_PASSWORD=<your-admin-password>
- DISCOURSE_EMAIL=<your-admin-email>
volumes:
- discourse_data:/bitnami/discourse
restart: unless-stopped
depends_on:
- postgresql
- redis
sidekiq:
image: bitnami/discourse:latest
command: /opt/bitnami/scripts/discourse-sidekiq/run.sh
environment:
- DISCOURSE_HOST=<your-discourse-host>
- DISCOURSE_DATABASE_HOST=postgresql
- DISCOURSE_DATABASE_NAME=discourse
- DISCOURSE_DATABASE_USER=discourse
- DISCOURSE_DATABASE_PASSWORD=<your-db-password>
- DISCOURSE_REDIS_HOST=redis
volumes:
- discourse_data:/bitnami/discourse
restart: unless-stopped
depends_on:
- discourse
postgresql:
image: bitnami/postgresql:16
environment:
- POSTGRESQL_USERNAME=discourse
- POSTGRESQL_PASSWORD=<your-db-password>
- POSTGRESQL_DATABASE=discourse
volumes:
- postgresql_data:/bitnami/postgresql
restart: unless-stopped
redis:
image: bitnami/redis:7.2
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- redis_data:/bitnami/redis
restart: unless-stopped
volumes:
discourse_data:
postgresql_data:
redis_data:
PORTHost port(default: 80)DISCOURSE_HOSTHostnameADMIN_USERAdmin user(default: admin)ADMIN_PASSWORDAdmin passwordADMIN_EMAILAdmin emailDB_PASSWORDDB passwordExecute the deployment and check the container status.
# Deploy the application
docker compose up -d
# Check container health
docker compose ps
# Monitor logs
docker compose logs -f --tail=100Enable network access by updating your firewall rules.
# Allow the application port through firewall
sudo ufw allow 80/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:80Skip the terminal and deploy Discourse with a visual interface. Configure everything with clicks, not commands.
After deploying Discourse with Server Compass, complete these steps to finish setup
Wait for app to start (requires working SMTP)
Create admin account on first visit
Configure site settings
Invite users
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Discourse
Simply download Server Compass, connect to your VPS, and select Discourse from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Discourse requires a minimum of 2048MB RAM. We recommend a VPS with at least 4096MB 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 Discourse backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Discourse image will be pulled and deployed with zero downtime.
Discourse 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 Discourse to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass