mirror of
https://github.com/docker/buildx.git
synced 2024-11-22 15:37:16 +08:00
6cfef7fa36
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
12 lines
259 B
Bash
Executable File
12 lines
259 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
: ${BUILDX_CMD=docker buildx}
|
|
|
|
output=$(mktemp -d -t buildx-output.XXXXXXXXXX)
|
|
(set -x ; ${BUILDX_CMD} bake --set "*.output=$output" update-docs)
|
|
rm -rf ./docs/reference/*
|
|
cp -R "$output"/out/* ./docs/
|
|
rm -rf $output
|