Loading…
Loading…
Getting Started
Get Podex running in minutes with Docker Compose.
Podex is a local, visual Kubernetes cluster examiner and interactive playground. Start exploring your cluster in minutes.
~/.kube/config filegit clone https://github.com/Hritikraj8804/podex.git
cd podex
docker compose up --build
This builds and launches two services:
http://localhost:3000http://localhost:8000Navigate to http://localhost:3000. Podex automatically detects your active Kubernetes context from ~/.kube/config and loads your cluster dashboard.
You're now looking at your cluster through Podex's visual interface. Explore pods, stream logs, or open the Arena to start designing cluster architectures visually.
Backend:
cd backend
python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
pip install -r requirements.txt
uvicorn main:app --host 0.0.0.0 --port 8000 --reload
Frontend:
cd frontend
npm install
npm run dev
The frontend dev server runs on http://localhost:3000 and connects directly to your local kubeconfig without container network address overrides.