From a88ae62db1e4d1d14edeeb68e9551ef50cafff9e Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 8 Aug 2026 23:27:59 +0400 Subject: [PATCH] docs: name the compose command that actually works here The v1 `docker-compose` binary on the deploy host fails with KeyError: 'ContainerConfig' when it recreates a container, so every instruction pointed at a command that cannot finish a deploy. Co-Authored-By: Claude Opus 5 --- CLAUDE.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CLAUDE.md b/CLAUDE.md index ab90eb2..c5a4c40 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -28,7 +28,9 @@ npm run build # vite build npm run typecheck # whole stack -docker-compose up -d --build +# Use `docker compose` (v2). The old `docker-compose` v1 binary on this machine +# crashes with KeyError: 'ContainerConfig' when recreating a container. +docker compose up -d --build ``` There is no lint step. `typecheck` is the gate; the `prebuild` hook fails the build on type errors.