diff --git a/README.md b/README.md index a641f0ef..9542bb7c 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,8 @@ This new vision for Archon replaces the old one (the agenteer). Archon used to b **Full Docker Mode (Recommended for Normal Archon Usage)** ```bash + docker compose up --build -d + # or, to match a previously used explicit profile: docker compose --profile full up --build -d # or make dev-docker # (Alternative: Requires make installed ) diff --git a/archon-ui-main/src/components/BackendStartupError.tsx b/archon-ui-main/src/components/BackendStartupError.tsx index 17f80c2e..8959bfc1 100644 --- a/archon-ui-main/src/components/BackendStartupError.tsx +++ b/archon-ui-main/src/components/BackendStartupError.tsx @@ -49,11 +49,16 @@ export const BackendStartupError: React.FC = () => { After fixing the issue in your .env file, recreate the Docker containers:
- docker compose down && docker compose --profile full up -d
+ docker compose down && docker compose up --build -d
- - Note: Use 'down' and 'up', not 'restart' - containers need to be recreated to load new environment variables. Replace the profile value (full) if needed. -
+Note:
+• Use 'down' and 'up' (not 'restart') so new env vars are picked up.
+• If you originally started with a specific profile (backend, frontend, or full),
+run the same profile again:
+docker compose --profile full up --build -d
+