mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
761dc6c13f
Adds an overlay for dev/docker-compose that resets the `build:` block of every locally-built component and points it at the matching prebuilt image from GHCR, so developers can run the stack without local builds. Image tag defaults to "main" and is overridable via BUTTERCUP_IMAGE_TAG. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> * ci: allow Docker Compose !reset/!override tags in YAML check The static-checks YAML step uses yaml.safe_load_all, which rejects the Compose-specific !reset/!override merge tags used by compose.prebuilt.yaml. Register no-op constructors for those tags so compose overlays validate without masking real YAML errors elsewhere. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
55 lines
1.9 KiB
YAML
55 lines
1.9 KiB
YAML
# Overlay for compose.yaml that pulls the prebuilt component images from GHCR
|
|
# instead of building them locally. It only overrides the services that have a
|
|
# `build:` block, resetting it and pointing at the published image.
|
|
#
|
|
# Usage (from dev/docker-compose):
|
|
# docker compose -f compose.yaml -f compose.prebuilt.yaml up -d
|
|
#
|
|
# Override the image tag (defaults to "main"):
|
|
# BUTTERCUP_IMAGE_TAG=<branch-or-tag> docker compose -f compose.yaml -f compose.prebuilt.yaml up -d
|
|
|
|
services:
|
|
program-model:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-program-model:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
coverage-bot:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-fuzzer:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
build-bot:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-fuzzer:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
tracer-bot:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-fuzzer:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
fuzzer-bot:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-fuzzer:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
task-downloader:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-orchestrator:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
task-server:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-orchestrator:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
scheduler:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-orchestrator:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
seed-gen:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-seed-gen:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
patcher:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-patcher:${BUTTERCUP_IMAGE_TAG:-main}
|
|
|
|
buttercup-ui:
|
|
build: !reset null
|
|
image: ghcr.io/trailofbits/buttercup/buttercup-orchestrator:${BUTTERCUP_IMAGE_TAG:-main}
|