aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-01-25 13:11:48 +0000
committersickcodes <[email protected]>2021-01-26 18:11:55 +0000
commitbffd8f39903a07202b0f069bf7f59911edf3950b (patch)
tree831d7fa63763699b7a94beb2598e7a5e9f9c9a6a
parentimages.sick.codes fixed images2.sick.codes (diff)
downloaddocker-osx-bffd8f39903a07202b0f069bf7f59911edf3950b.tar.xz
docker-osx-bffd8f39903a07202b0f069bf7f59911edf3950b.zip
[QOL] Fix auto image building wget log overload
-rw-r--r--Dockerfile.auto5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile.auto b/Dockerfile.auto
index 10a9af0..cdd3cf4 100644
--- a/Dockerfile.auto
+++ b/Dockerfile.auto
@@ -95,8 +95,9 @@ ARG IMAGE_URL='https://images2.sick.codes/mac_hdd_ng_auto.img'
# use the COMPLETE arg, for a complete image, ready to boot.
# otherwise use your own image: -v "$PWD/disk.img":/image
RUN if [[ "${COMPLETE}" ]]; then \
- echo "Downloading 20GB+ image... Press Ctrl+C to abort." \
- ; wget --no-dns-cache \
+ echo "Downloading 20GB+ image... This step might take a while... Press Ctrl+C if you want to abort." \
+ ; wget --no-verbose \
+ --no-dns-cache \
--no-check-certificate \
--output-document=/home/arch/OSX-KVM/mac_hdd_ng.img \
"${IMAGE_URL}" \