chore: replace Docker Desktop references with open-source alternatives
Docker Desktop requires a commercial licence for business use. Replace all references with free alternatives: - macOS: Rancher Desktop (GUI) or Colima (CLI) - Linux: Docker Engine CE (no Desktop needed at all) - Windows: Rancher Desktop or WSL2 + Docker Engine setup.sh detects the OS and shows platform-specific install instructions. claude.sh defers to setup.sh for install hints to avoid duplication. README documents all options including a WSL2 setup walkthrough. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f68ed674d0
commit
3aff92bd41
3 changed files with 72 additions and 14 deletions
30
README.md
30
README.md
|
|
@ -4,9 +4,17 @@ Runs [Claude Code](https://claude.ai/code) inside an isolated Docker environment
|
|||
|
||||
## Quick Start
|
||||
|
||||
**1. Install Docker Desktop**
|
||||
**1. Install a Docker runtime**
|
||||
|
||||
Download and install [Docker Desktop](https://www.docker.com/products/docker-desktop/) for your platform. It's free and includes everything needed — no extra tools required.
|
||||
Pick the free, open-source option for your platform:
|
||||
|
||||
| Platform | Recommended | Alternative |
|
||||
|---|---|---|
|
||||
| macOS | [Rancher Desktop](https://rancherdesktop.io/) (GUI) | [Colima](https://github.com/abiosoft/colima) (CLI): `brew install colima docker docker-compose && colima start` |
|
||||
| Linux | Docker Engine: `curl -fsSL https://get.docker.com \| sh` | [Rancher Desktop](https://rancherdesktop.io/) |
|
||||
| Windows | [Rancher Desktop](https://rancherdesktop.io/) (GUI) | WSL2 + Docker Engine (see below) |
|
||||
|
||||
> **Note:** Docker Desktop is not listed — it requires a commercial licence for business use.
|
||||
|
||||
**2. Download this repo**
|
||||
|
||||
|
|
@ -67,7 +75,13 @@ Setup will ask how you want to authenticate (API key, subscription token, or bro
|
|||
|
||||
## Prerequisites
|
||||
|
||||
- [Docker Desktop](https://www.docker.com/products/docker-desktop/) (includes Docker Engine and Compose)
|
||||
A Docker runtime with Compose support. Choose a free, open-source option:
|
||||
|
||||
- **macOS:** [Rancher Desktop](https://rancherdesktop.io/) or [Colima](https://github.com/abiosoft/colima)
|
||||
- **Linux:** [Docker Engine CE](https://docs.docker.com/engine/install/) (`curl -fsSL https://get.docker.com | sh`)
|
||||
- **Windows:** [Rancher Desktop](https://rancherdesktop.io/) or WSL2 + Docker Engine
|
||||
|
||||
> Docker Desktop is not recommended — it requires a commercial licence for business use.
|
||||
|
||||
## Authentication
|
||||
|
||||
|
|
@ -116,6 +130,16 @@ cd ~/myproject
|
|||
./claude.sh shell # Debug bash shell in the Claude container
|
||||
```
|
||||
|
||||
### Windows: WSL2 + Docker Engine (alternative to Rancher Desktop)
|
||||
|
||||
1. Install [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install): `wsl --install` in PowerShell
|
||||
2. Open the Ubuntu terminal and run:
|
||||
```bash
|
||||
curl -fsSL https://get.docker.com | sh
|
||||
sudo usermod -aG docker $USER
|
||||
```
|
||||
3. Log out and back in, then run `launch.bat` as usual.
|
||||
|
||||
### Building locally
|
||||
|
||||
```bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue