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 <noreply@anthropic.com>
This commit is contained in:
kami
2026-08-08 23:27:59 +04:00
parent 85ca9cf543
commit a88ae62db1
+3 -1
View File
@@ -28,7 +28,9 @@ npm run build # vite build
npm run typecheck npm run typecheck
# whole stack # 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. There is no lint step. `typecheck` is the gate; the `prebuild` hook fails the build on type errors.