File tree Expand file tree Collapse file tree 1 file changed +12
-20
lines changed
Expand file tree Collapse file tree 1 file changed +12
-20
lines changed Original file line number Diff line number Diff line change @@ -55,31 +55,23 @@ A beautiful real-time terminal monitoring tool for Claude AI token usage. Track
5555
5656## 🚀 Installation
5757
58- ### Method 1: Docker (Recommended for non-technical users)
58+ ### Method 1: Docker
5959
60- ** Prerequisites:**
61- - Docker and Docker Compose installed on your system
62-
63- ** Super Simple Setup:**
60+ Requires that is Docker installed.
6461
65- ``` bash
66- # Clone the repository
67- git clone https://github.com/amphora/Claude-Code-Usage-Monitor.git
68- cd Claude-Code-Usage-Monitor
69-
70- # Run with pre-built image (no build time!)
71- docker-compose up
72-
73- # Or run with custom options
74- docker-compose run claude-monitor --plan max5 --timezone US/Eastern
62+ ``` bash
63+ docker run -it --rm \
64+ -v " $HOME /.claude:/root/.claude:ro" \
65+ -e HOME=/root \
66+ ghcr.io/amphora/claude-code-usage-monitor:docker --plan max5 --timezone US/Eastern
7567```
7668
77- ** Development Setup (build locally):**
69+ The plan options:
70+ - ` --plan pro ` (default, 7000 tokens)
71+ - ` --plan max5 ` (35000 tokens)
72+ - ` --plan max20 ` (140000 tokens)
73+ - ` --plan custom_max ` (auto-detects from highest previous block)
7874
79- ``` bash
80- # Build and run locally
81- docker-compose -f docker-compose.local.yml up --build
82- ```
8375
8476### Method 2: Local Installation
8577
You can’t perform that action at this time.
0 commit comments