From f746612b3426cf503e53f7528cea7b7d0814e8af Mon Sep 17 00:00:00 2001 From: LuisMend12 <128239393+LuisMend12@users.noreply.github.com> Date: Sat, 1 Aug 2026 13:25:18 -0400 Subject: [PATCH] Prefix local build image with ghcr.io/extra-org/extra to match prod make build tagged the image extra:local, while prod releases push to ghcr.io/extra-org/extra:. The differing prefix made it unclear that the local build is the same image as prod, just a different tag. Fixes #82 --- Makefile | 4 ++-- examples/enterprise-knowledge-assistant/docker-compose.yml | 6 +++--- examples/starter/docker-compose.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 24b27ee6..fd9f9a7a 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ FLAGSHIP := $(EXAMPLE)/$(CONFIG) # Every example must stay offline-valid — `make validate` checks them all. EXAMPLES := examples/starter examples/enterprise-knowledge-assistant -IMAGE := extra:local +IMAGE := ghcr.io/extra-org/extra:local COMPOSE := CONFIG=$(CONFIG) docker compose -f $(EXAMPLE)/docker-compose.yml .DEFAULT_GOAL := help @@ -72,7 +72,7 @@ validate: ## Validate every example offline (no LLM calls, no network, no API ke inspect: ## Inspect the flagship example offline (agents, MCPs, hooks, plugins, tags). agentctl inspect $(FLAGSHIP) -build: ## Build the container image, tagged extra:local. +build: ## Build the container image, tagged ghcr.io/extra-org/extra:local. docker build -t $(IMAGE) . # Validate inside the image so only Docker is required, not a local install. diff --git a/examples/enterprise-knowledge-assistant/docker-compose.yml b/examples/enterprise-knowledge-assistant/docker-compose.yml index 924cdd39..9ed13bee 100644 --- a/examples/enterprise-knowledge-assistant/docker-compose.yml +++ b/examples/enterprise-knowledge-assistant/docker-compose.yml @@ -1,6 +1,6 @@ services: mcp: - image: extra:local + image: ghcr.io/extra-org/extra:local entrypoint: ["python", "-m", "mcps.local_knowledge_mcp.server"] volumes: - .:/workspace @@ -9,7 +9,7 @@ services: - "8100:8100" engine: - image: extra:local + image: ghcr.io/extra-org/extra:local profiles: ["engine"] command: ["serve", "--config", "/workspace/${CONFIG:-agents.yaml}", "--host", "0.0.0.0", "--port", "8090"] volumes: @@ -21,7 +21,7 @@ services: - mcp manager: - image: extra:local + image: ghcr.io/extra-org/extra:local profiles: ["ui"] command: ["agent-manager", "--config", "/workspace/${CONFIG:-agents.yaml}", "--host", "0.0.0.0", "--port", "8100"] volumes: diff --git a/examples/starter/docker-compose.yml b/examples/starter/docker-compose.yml index edfd58d4..d3c034f5 100644 --- a/examples/starter/docker-compose.yml +++ b/examples/starter/docker-compose.yml @@ -1,6 +1,6 @@ services: mcp: - image: extra:local + image: ghcr.io/extra-org/extra:local entrypoint: ["python", "-m", "mcps.bank.server"] volumes: - .:/workspace @@ -9,7 +9,7 @@ services: - "8100:8100" engine: - image: extra:local + image: ghcr.io/extra-org/extra:local profiles: ["engine"] command: ["serve", "--config", "/workspace/${CONFIG:-agents.yaml}", "--host", "0.0.0.0", "--port", "8090"] volumes: @@ -21,7 +21,7 @@ services: - mcp manager: - image: extra:local + image: ghcr.io/extra-org/extra:local profiles: ["ui"] command: ["agent-manager", "--config", "/workspace/${CONFIG:-agents.yaml}", "--host", "0.0.0.0", "--port", "8100"] volumes: