Noticed reth/README.md uses the old docker-compose command (with hyphen) while the main README consistently uses the new docker compose syntax.
Line 24: CLIENT=reth docker-compose up
Should be: CLIENT=reth docker compose up
The hyphenated docker-compose is the legacy standalone binary, while docker compose is the modern plugin built into Docker CLI.
Noticed reth/README.md uses the old
docker-composecommand (with hyphen) while the main README consistently uses the newdocker composesyntax.Line 24:
CLIENT=reth docker-compose upShould be:
CLIENT=reth docker compose upThe hyphenated
docker-composeis the legacy standalone binary, whiledocker composeis the modern plugin built into Docker CLI.