From f908a3b74bf88fac86647f2f647e92ba3d4bc789 Mon Sep 17 00:00:00 2001 From: Dmitrii Iurco Date: Wed, 22 Apr 2026 08:33:46 -0400 Subject: [PATCH] fix: make start builds images automatically docker compose up --build ensures the API and webui images are always built from the current source on first install or after code changes, so users don't need a separate make build-api step. Co-Authored-By: Claude Sonnet 4.6 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3fddf73..918be04 100644 --- a/Makefile +++ b/Makefile @@ -56,7 +56,7 @@ init-peers: # Management commands start: @echo "Starting Personal Internet Cell..." - $(DC) up -d + $(DC) up -d --build @echo "Services started. Check status with 'make status'" stop: