Skip to content

Getting Started with openstatus

You can use openstatus by either signing up for our cloud version or by self-hosting the application on your own infrastructure.

The easiest way to get started is with our cloud version. You can sign up for a free account and begin monitoring your services in seconds.

For users who want to host openstatus on their own infrastructure, all our code is open source.

We offer a few ways to get started with self-hosting:

The fastest way to get started for both development and self-hosting is with Docker.

Terminal window
# 1. Copy environment file
cp .env.docker.example .env.docker
# 2. Start all services
docker compose up -d
# 3. Access the application
open http://localhost:3002 # Dashboard
open http://localhost:3003 # Status Pages

For a complete guide on using Docker, including database setup and configuration, please see our DOCKER.md file.

You can use Devbox to easily manage your development environment.

  1. Install Devbox
    Terminal window
    curl -fsSL https://get.jetify.com/devbox | bash
  2. Install project dependencies, build and start services
    Terminal window
    devbox services up