mirror of
https://github.com/moby/buildkit.git
synced 2026-06-24 08:47:57 +00:00
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>
13 lines
290 B
Bash
Executable File
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[@]}" "$@"
|