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.

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.

  1. Download arthas-server-all for your platform
  2. Make it executable: chmod +x arthas-server-all-linux-amd64
  3. Run: ./arthas-server-all-linux-amd64
  4. 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)

  1. Download the arthas-server-all binary for your platform
  2. Make it executable: chmod +x arthas-server-all-*
  3. Run it: ./arthas-server-all-linux-amd64 (opens on :8080)

Tier 2: Docker Compose

  1. Create a docker-compose.yml file (see above)
  2. Run: docker compose up -d
  3. Access at http://localhost:8080

GitHub Releases

All releases, changelogs, and source archives are available on GitHub.

GitHub Releases ↗