Built with Mintlify.
See CONTRIBUTING.md for more information and CLAUDE.md for instructions on how to use AI code generation with the necessary context.
Mintlify does not document an official public container image. This repository builds a local image with the official Node 24 image and the Mintlify CLI.
You need Docker and Make. Start the local preview from the repository root.
make devOpen http://localhost:3000.
The command mounts the current directory at /docs. Mintlify reloads the preview when you edit a file. The command stores the Mintlify runtime cache in a Docker volume.
Set PORT when port 3000 is not available.
make dev PORT=3333The preview listens only on 127.0.0.1 by default. Set PREVIEW_HOST=0.0.0.0 when another computer must access it.
make dev PREVIEW_HOST=0.0.0.0The Dockerfile pins the Node 24 base image by digest. It also pins the Mintlify CLI version. Set MINTLIFY_VERSION to test another CLI version.
make dev MINTLIFY_VERSION=4.2.882Install the Mintlify CLI to preview the documentation changes locally.
npm i -g mintlifyRun the command from the repository root.
mintlify devSee CONTRIBUTING.md for more information.