Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions examples/enterprise-knowledge-assistant/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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:
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions examples/starter/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
mcp:
image: extra:local
image: ghcr.io/extra-org/extra:local
entrypoint: ["python", "-m", "mcps.bank.server"]
volumes:
- .:/workspace
Expand All @@ -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:
Expand All @@ -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:
Expand Down
Loading