docs: fix docker-compose for docker.io users — install separately, note hyphen syntax

https://claude.ai/code/session_01FKCW3FDjNFj6jve4niMFXH
This commit is contained in:
Claude 2026-03-19 14:27:52 +00:00
parent 1532bc170b
commit 95ac2adcb0
No known key found for this signature in database

View file

@ -124,9 +124,12 @@ curl -fsSL https://get.docker.com | sh
**Option B — Debian-packaged `docker.io` (older but simpler, no extra repo needed):** **Option B — Debian-packaged `docker.io` (older but simpler, no extra repo needed):**
```bash ```bash
sudo apt install -y docker.io sudo apt install -y docker.io docker-compose
``` ```
> **Note:** `docker.io` ships with Compose v1 as a separate binary.
> Use `docker-compose` (with a hyphen) instead of `docker compose` everywhere in this guide.
Then, regardless of which option you used: Then, regardless of which option you used:
```bash ```bash