-
Notifications
You must be signed in to change notification settings - Fork 180
Add compose.prebuilt.yaml overlay for prebuilt GHCR images #548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
62e5327
Add compose.prebuilt.yaml overlay for prebuilt GHCR images
ret2libc 95d2a8c
ci: allow Docker Compose !reset/!override tags in YAML check
ret2libc 4c11e4e
docs(docker-compose): list compose.prebuilt.yaml in Configuration
ret2libc 7f1b608
Merge branch 'main' into worktree-compose-prebuilt
ret2libc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| # 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} |
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.
Uh oh!
There was an error while loading. Please reload this page.