build: add docker-compose.yml and justfile for local image builds#1191
Merged
RembrandtK merged 1 commit intomain-dipsfrom Apr 14, 2026
Merged
build: add docker-compose.yml and justfile for local image builds#1191RembrandtK merged 1 commit intomain-dipsfrom
RembrandtK merged 1 commit intomain-dipsfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds local developer tooling to build the existing Indexer Agent and CLI Docker images consistently from the repo root, enabling downstream integration branches to reference locally-built tags without host-path overlays.
Changes:
- Introduces a root
docker-compose.ymlthat buildsDockerfile.indexer-agentandDockerfile.indexer-cliand tags images using a configurableTAG. - Adds a
justfilerecipe (build-image) to build both images with a single command and an optional tag override.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
justfile |
Adds a just build-image recipe that runs docker compose build with an overridable TAG for consistent local tagging. |
docker-compose.yml |
Defines two buildable services (agent + cli) that tag images as ghcr.io/graphprotocol/indexer-{agent,cli}:${TAG:-local}. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
MoonBoi9001
approved these changes
Apr 14, 2026
Adds a root docker-compose.yml that wraps the existing
Dockerfile.indexer-agent and Dockerfile.indexer-cli, and a justfile with
a build-image recipe so consumers can produce
ghcr.io/graphprotocol/indexer-{agent,cli}:local (or an override tag)
with a single command.
This unblocks the local-network integration branch from needing
host-absolute INDEXER_AGENT_SOURCE_ROOT overlays: downstream wrappers
can consume the locally-built image by tag instead.
e402972 to
02d4dcd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a root docker-compose.yml that wraps the existing Dockerfile.indexer-agent and Dockerfile.indexer-cli, and a justfile with a build-image recipe so consumers can produce
ghcr.io/graphprotocol/indexer-{agent,cli}:local (or an override tag) with a single command.
This unblocks the local-network integration branch from needing host-absolute INDEXER_AGENT_SOURCE_ROOT overlays: downstream wrappers can consume the locally-built image by tag instead.