You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would make it easier to parse the raw JSON output, since you can simply split by newlines and feed every line into a JSON parser.
Right now the JSON output comes "nicely" formatted for human consumption, but harder to parse automatically (this was added in #4113 (comment)).
My main intention is to make this easier to parse when appearing in docker compose output (see docker/compose#11478). Since docker compose stdout output can also contain stdout from other sources than buildkit, it's a lot easier to parse stdout when every JSON record is in its own line (and just a single line).
The text was updated successfully, but these errors were encountered:
This would make it easier to parse the raw JSON output, since you can simply split by newlines and feed every line into a JSON parser.
Right now the JSON output comes "nicely" formatted for human consumption, but harder to parse automatically (this was added in #4113 (comment)).
My main intention is to make this easier to parse when appearing in
docker compose
output (see docker/compose#11478). Sincedocker compose
stdout output can also contain stdout from other sources than buildkit, it's a lot easier to parse stdout when every JSON record is in its own line (and just a single line).The text was updated successfully, but these errors were encountered: