mirror of
https://github.com/open-gitagent/langship.sh.git
synced 2026-08-03 07:21:04 +02:00
- Added multi-execution view to display multiple execution statuses. - Improved error handling in agent triggering to surface failures. - Updated execution view to support live updates via SSE and added a log panel for node logs. - Enhanced pipeline canvas to display node statuses during execution. - Introduced new fields in the build node form for Docker configurations. - Updated API to support execution streaming and enhanced node catalog descriptions.
30 lines
847 B
TOML
30 lines
847 B
TOML
# BuildKit daemon config — used by the buildkitd compose service.
|
|
# https://github.com/moby/buildkit/blob/master/docs/buildkitd.toml.md
|
|
|
|
debug = false
|
|
|
|
# Insecure registries for local development. Add your private registry here
|
|
# if it serves plain HTTP. ghcr.io / docker.io / etc. work without an entry.
|
|
[registry."localhost:5000"]
|
|
http = true
|
|
insecure = true
|
|
|
|
[registry."registry:5000"]
|
|
http = true
|
|
insecure = true
|
|
|
|
# Disable the worker's outbound OTEL push by default. Re-enable with the
|
|
# OTEL_EXPORTER_OTLP_ENDPOINT env var on the buildkitd container if you want
|
|
# tracing.
|
|
[grpc]
|
|
address = ["tcp://0.0.0.0:1234", "unix:///run/buildkit/buildkitd.sock"]
|
|
|
|
[worker.oci]
|
|
enabled = true
|
|
# Garbage-collect intermediate layers when the cache exceeds 20 GiB.
|
|
gc = true
|
|
gckeepstorage = 20000
|
|
|
|
[worker.containerd]
|
|
enabled = false
|