Sign inSign up

devprincekumar/openmaic

By devprincekumar

Updated 6 months ago

Prebuilt Docker image for OpenMAIC enabling quick one-step deployment without local build

Image
Languages & frameworks
Machine learning & AI
Data science
0

2.2K

devprincekumar/openmaic repository overview

Full Repository Overview

GitHub Repository (Full Setup & Docs): https://github.com/855princekumar/openmaic-docker


OpenMAIC Docker (Prebuilt Image)

This repository provides a prebuilt Docker image for running OpenMAIC, an open-source multi-agent AI classroom platform developed by Tsinghua University.

It enables users to launch the application instantly without installing Node.js, pnpm, or handling large dependency builds locally.


Upstream Project

Based on: https://github.com/THU-MAIC/OpenMAIC

OpenMAIC is a multi-agent AI system that generates structured learning experiences including lessons, quizzes, and interactive discussions.


Key Features

  • One-step deployment using Docker
  • No local build required
  • Simplified setup via .env.local
  • Consistent runtime environment

Quick Start

Create a .env.local file:

GOOGLE_API_KEY=your_api_key
DEFAULT_MODEL=google:gemini-3-flash-preview

Run the container:

docker run -p 3000:3000 --env-file .env.local devprincekumar/openmaic:latest

Access:

http://localhost:3000

Docker Compose

services:
  openmaic:
    image: devprincekumar/openmaic:latest
    env_file:
      - .env.local
    ports:
      - "3000:3000"

Notes

  • Requires at least one LLM provider API key
  • Supports OpenAI, Google, Anthropic, and compatible APIs
  • Data persistence can be enabled via volume mounts

Disclaimer

This is a community-maintained image and is not officially maintained by the OpenMAIC team.


Future Work

Exploring local LLM support via OpenAI-compatible endpoints (e.g., Ollama).

Tag summary

Content type

Image

Digest

sha256:44288f964

Size

98.8 MB

Last updated

6 months ago

docker pull devprincekumar/openmaic