mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
dont clip logs...
This commit is contained in:
parent
ef1a9e8e4a
commit
55cf7213f0
1 changed files with 6 additions and 4 deletions
|
|
@ -70,7 +70,7 @@ ParseArgs() {
|
|||
local IFS=","
|
||||
# Handle the special value "all"
|
||||
if [[ "${ARCH_LIST}" == "all" ]]; then
|
||||
# Replace with comma separated
|
||||
# Replace with comma separated
|
||||
ARCH_LIST="${ALL_TARGET_ARCH[*]}"
|
||||
fi
|
||||
|
||||
|
|
@ -88,7 +88,7 @@ ParseArgs() {
|
|||
}
|
||||
|
||||
|
||||
# Function for use with trap in the primary scripts to remove the
|
||||
# Function for use with trap in the primary scripts to remove the
|
||||
# docker builder and restore the original directory
|
||||
Cleanup() {
|
||||
docker buildx rm certbot_builder || true
|
||||
|
|
@ -106,5 +106,7 @@ CreateBuilder() {
|
|||
# just incase the env is not perfectly clean, remove any old instance of the builder
|
||||
docker buildx rm certbot_builder || true
|
||||
# create the builder instance
|
||||
docker buildx create --name certbot_builder --driver docker-container --driver-opt=network=host --bootstrap
|
||||
}
|
||||
docker buildx create --name certbot_builder --driver docker-container \
|
||||
--driver-opt=network=host --driver-opt env.BUILDKIT_STEP_LOG_MAX_SIZE=-1 \
|
||||
--driver-opt env.BUILDKIT_STEP_LOG_MAX_SPEED=-1 --bootstrap
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue