MySQL Setup Guide

July 28, 2026 · View on GitHub

This page provides MySQL-focused commands. For the full end-to-end setup — CLI, Docker, Compose, Helm — see the Local Setup Guide.

Docker Compose (GHCR track)

export DECISION_ENGINE_TAG=v1.4
COMPOSE_PROFILES= docker compose --profile mysql-ghcr up -d

With dashboard + docs:

COMPOSE_PROFILES= docker compose --profile dashboard-mysql-ghcr up -d

Docker Compose (Local build track)

COMPOSE_PROFILES= docker compose --profile mysql-local up -d --build

With dashboard + docs:

COMPOSE_PROFILES= docker compose --profile dashboard-mysql-local up -d --build

Make targets

make init-mysql-ghcr
make init-mysql-local

Verify

curl http://localhost:8080/health

Expected response:

{"message":"Health is good"}