From ab0c10f0021258dd6352082bb5128da5aff9b094 Mon Sep 17 00:00:00 2001 From: Karesansui Date: Mon, 16 Mar 2026 22:53:58 +0900 Subject: [PATCH] fix(makefile): correct docker-init help description (#1163) The help text described docker-init as "Build the custom k3s image" but the actual implementation (scripts/docker.sh init) only pulls the sandbox image. Updated to match the real behavior. Co-authored-by: Claude Opus 4.6 Co-authored-by: Willem Jiang --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4581652..c9624dc 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ help: @echo " make down - Stop and remove production Docker containers" @echo "" @echo "Docker Development Commands:" - @echo " make docker-init - Build the custom k3s image (with pre-cached sandbox image)" + @echo " make docker-init - Pull the sandbox image" @echo " make docker-start - Start Docker services (mode-aware from config.yaml, localhost:2026)" @echo " make docker-stop - Stop Docker development services" @echo " make docker-logs - View Docker development logs"