Files
buildkit/hack/compose
Jonathan A. Sternberg e1c4fda48c hack: configure the otel-collector for hack/compose
Configure the otel-collector for `hack/compose` to use it for processing
traces and forwarding to jaeger. This simplifies the configuration and
also opens up the ability to configure additional behavior around traces
and metrics for debugging.

This also removes the automatic override file and the gitignore file. It
wasn't really working well for me and made it difficult to share
extensions to the development environment. I'm going to try something
different for that in a different change.

Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
2024-03-13 11:01:30 -05:00

13 lines
290 B
Bash
Executable File

#!/usr/bin/env bash
# Use to set up a dev environment for buildkit using docker compose.
# See composefiles/README.md for more details.
. $(dirname $0)/util
set -eu -o pipefail
filesDir=$(dirname $0)/composefiles
args=(compose '-f' "$filesDir/compose.yaml")
dockerCmd "${args[@]}" "$@"