# Self-Hosted Quickstart

This guide walks you through deploying Probo locally with Docker Compose and setting up your first compliance framework. You should be up and running in about 15 minutes.

For a managed service or a production Kubernetes deployment, [compare the deployment options](/docs/product/getting-started/choose-deployment).

## Prerequisites

- [Docker](https://docs.docker.com/get-started/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) installed on your machine
- [OpenSSL](https://www.openssl.org/) for generating local secrets

:::note
This quickstart creates a local evaluation environment at `http://localhost:8080`. For a production deployment with HTTPS, email delivery, backups, and monitoring, use the [full Docker Compose guide](/docs/deployment/self-hosting/docker-compose).
:::

## Deploy Probo

  

```bash
git clone https://github.com/getprobo/probo.git
cd probo
```

  

  

Generate the required secrets and application settings:

```bash
cat > .env <

  

```bash
docker compose -f compose.prod.yaml up -d
```

This starts the Probo server, PostgreSQL, SeaweedFS, and the headless browser used for document generation.

  

  

```bash
curl --fail http://localhost:8080/healthz
docker compose -f compose.prod.yaml ps
```

The health request should succeed and each service should report a running or healthy state. If it does not, inspect the application logs:

```bash
docker compose -f compose.prod.yaml logs probo
```

  

  

Open [http://localhost:8080](http://localhost:8080) in your browser. Create your account and log in.

  

  

After logging in, create your first organization. This is the top-level entity that contains all your compliance data.

  

  

Navigate to the frameworks section and import the framework relevant to your business — for example, SOC 2 or ISO 27001. This gives you a set of controls to work with.

  

## Next Steps

You now have a running Probo instance with a compliance framework in place. From here, you can start mapping controls to your security practices, collecting evidence, and managing risks.

- [Set up your first framework](/docs/product/getting-started/first-organization-and-framework) — Continue with organization, framework, ownership, and evidence setup
- [Core Concepts](/docs/product/getting-started/core-concepts) — Understand the data model: frameworks, controls, measures, risks, and more
- [Configuration](/docs/deployment/configuration/overview) — Configure Probo for your environment
- [Single Sign-On](/docs/product/sso/overview) — Set up SSO with Google Workspace, Okta, or other SAML providers
- [Docker Compose (full guide)](/docs/deployment/self-hosting/docker-compose) — Complete deployment guide with production configuration, backups, and monitoring
