
Deploy Cachet on Your Own Server
An open source status page system for everyone.
Want to deploy Cachet on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.
What is Cachet?
π An open source status page system for everyone. GitHub: https://github.com/CachetHQ/Cachet
Self-Host Cachet
Follow these steps to deploy on your own server.
Install Docker
Skip this step if Docker is already installed on your server.
curl -fsSL https://get.docker.com | sh
Configure
Customize the settings below. Defaults work for most cases.
Deploy
Copy the configuration and run it on your server.
services:
cachet:
image: cachethq/docker:2.3.15
environment:
APP_DEBUG: "false"
APP_ENV: production
APP_KEY: c7a4e092957ba847e3d19a9dcdaf7ec3
APP_LOG: errorlog
DB_DATABASE: postgres
DB_DRIVER: pgsql
DB_HOST: cachet-postgres
DB_PASSWORD: e3091494d1e2e19c
DB_PORT: "5432"
DB_PREFIX: chq_
DB_USERNAME: postgres
DEBUG: "false"
cachet-postgres:
image: postgres:12-alpine
environment:
POSTGRES_PASSWORD: e3091494d1e2e19c
POSTGRES_USER: postgres
volumes:
- cachet-postgres-data:/var/lib/postgresql/data
volumes:
cachet-postgres-data: {}
Then run:
docker compose up -d
Access
Once started, access your app at http://localhost:8000
Why Self-Host Cachet?
Full Data Ownership
Your data stays on your servers. No third-party access.
No Monthly Fees
Pay only for your server. No per-seat or usage charges.
Complete Control
Customize, backup, and scale on your own terms.
Privacy & Compliance
Meet GDPR, HIPAA, or internal security requirements.
Technical Details
Docker Image
cachethq/docker:${cachet_version}Official Docs
docs.cachethq.ioWant to go faster?
Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.
Install on any Linux server:
sh -c "$(curl -sSL https://get.senate.sh)"