Quickstart

Get Kubey up and running in under 30 seconds.

Prerequisites

  • Docker installed on your machine
  • A kubeconfig file with access to your Kubernetes clusters (usually at ~/.kube/config)

Run with Docker

The fastest way to get started is with a single Docker command. The official image is available on Docker Hub:

Terminalbash
docker pull jboocodes/kubeydocker \  
docker run -d \
  --name kubey \
  -p 8080:8080 \
  -v ~/.kube:/root/.kube:ro \
  jboocodes/kubey

This command:

  • Runs Kubey in detached mode (-d)
  • Exposes the web UI on port 8080
  • Mounts your kubeconfig as read-only

Access the Dashboard

Open your browser and go to:

http://localhost:8080

That's it! Your clusters will be automatically detected from your kubeconfig file.

What's Next?