Installation
Detailed installation instructions for various environments.
Installation#
Mosaic Stack can be installed in several ways depending on your environment and requirements.
Docker Compose (Recommended)#
The easiest way to get started is with Docker Compose. This method is recommended for development and small-scale deployments.
yaml
# docker-compose.yml
services:
gateway:
image: mosaic/gateway:latest
ports:
- "8080:8080"
web:
image: mosaic/web:latest
ports:
- "3000:3000"Kubernetes via Helm#
For production deployments, use the official Helm chart:
bash
helm repo add mosaic https://charts.mosaicstack.dev
helm install mosaic mosaic/mosaic-stack