Merge pull request #1103 from jedevc/remote-driver-bootstrap

Use --bootstrap to wait for remote to become active
This commit is contained in:
Tõnis Tiigi
2022-05-12 10:21:15 -07:00
committed by GitHub
3 changed files with 30 additions and 21 deletions

View File

@@ -55,6 +55,7 @@ if [ "$DRIVER" != "docker" ]; then
createFlags="$createFlags --append"
fi
buildxCmd create ${createFlags} \
--bootstrap \
--name="${builderName}" \
--node="${builderName}-${platform/\//-}" \
--platform="${platform}" \
@@ -69,6 +70,7 @@ if [ "$DRIVER" != "docker" ]; then
createFlags="$createFlags --config=${BUILDKIT_CFG}"
fi
buildxCmd create ${createFlags} \
--bootstrap \
--name="${builderName}" \
--platform="${PLATFORMS}" \
--driver="${DRIVER}" \