Skip to content

Installation

Get Konnect running on your machine in under 5 minutes using Docker.


Before you begin, make sure you have:

  • Docker 24.0 or higher installed (Get Docker)
  • 4 GB RAM minimum (8 GB recommended)
  • 10 GB free disk space
  • An LLM API key from one of the supported providers (Groq, OpenAI, Anthropic, or Ollama). You’ll enter this through the Konnect UI after launching — no environment files needed.

Open a terminal and pull the latest Konnect image:

Terminal window
docker pull ghcr.io/kyanitesolutions/konnect:beta-latest

Run Konnect:

Terminal window
docker run -d \
--name konnect \
-p 7080:7080 \
-v konnect_data:/app/data \
ghcr.io/kyanitesolutions/konnect:beta-latest

The -v konnect_data:/app/data volume persists your dashboard layouts, chat history, and configuration across container restarts.


Open your browser and navigate to:

http://localhost:7080

You should see the Konnect Manufacturing IDE. If the page doesn’t load immediately, wait 30–60 seconds for the application to finish starting.


Once the UI loads:

  1. Open the Chat panel on the left sidebar.
  2. Enter your LLM API key when prompted — choose from Groq, OpenAI, Anthropic, or Ollama.
  3. You can switch providers at any time from the chat interface.

Tip: Groq offers a free tier with excellent performance — recommended for getting started.


Check that the container is running and healthy:

Terminal window
docker ps --filter name=konnect

You should see the container listed with status Up. You can also check the health endpoint:

Terminal window
curl http://localhost:7080/health

If you prefer Docker Compose, create a docker-compose.yml:

version: '3.8'
services:
konnect:
image: ghcr.io/kyanitesolutions/konnect:beta-latest
container_name: konnect
ports:
- "7080:7080"
volumes:
- konnect-data:/app/data
restart: unless-stopped
volumes:
konnect-data:

Start with:

Terminal window
docker compose up -d

The konnect-data volume persists your dashboard layouts, chat history, and configuration across container restarts.


To update to the latest version:

Terminal window
docker pull ghcr.io/kyanitesolutions/konnect:beta-latest
docker stop konnect
docker rm konnect
docker run -d --name konnect -p 7080:7080 -v konnect_data:/app/data ghcr.io/kyanitesolutions/konnect:beta-latest

Your data is preserved in Docker volumes.


Once Konnect is running, head to First Steps to connect your first data source and ask your first question.