Download Arthas
Current Version v1.2.2
Download Arthas binaries for your platform or self-host with Docker.
Download Binaries
Choose your platform and download both the server and CLI client.
Linux arm64
macOS amd64
macOS arm64
Windows amd64
All-in-One Binary (Server + Frontend)
A single binary that includes both the WebSocket server and the web frontend. No separate Nginx or static file hosting needed — just run it and open your browser.
- Download arthas-server-all for your platform
Make it executable: chmod +x arthas-server-all-linux-amd64Run: ./arthas-server-all-linux-amd64- Open http://localhost:8080 in your browser
The all-in-one binary embeds the frontend. No extra files or config needed.
Self-Host with Docker
Run your own Arthas instance with Docker Compose in minutes.
docker-compose.yml
services:
arthas:
image: ghcr.io/michaelwang123/arthas:latest
ports:
- "8080:8080"
restart: unless-stopped Quick Start
Tier 1: Single Binary (All-in-One)
- Download the arthas-server-all binary for your platform
Make it executable: chmod +x arthas-server-all-*Run it: ./arthas-server-all-linux-amd64 (opens on :8080)
Tier 2: Docker Compose
- Create a docker-compose.yml file (see above)
Run: docker compose up -d- Access at http://localhost:8080
GitHub Releases
All releases, changelogs, and source archives are available on GitHub.
GitHub Releases ↗