From 3963729b2b35ed2efcf974bc0905270c55cc6183 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 19 Jul 2023 23:11:53 +0200 Subject: [PATCH] Use alpine in example --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 0793631..5e61b0e 100644 --- a/readme.md +++ b/readme.md @@ -30,7 +30,7 @@ services: image: qemux/qemu-docker:latest environment: DISK_SIZE: "16G" - BOOT: "http://www.example.com/image.iso" + BOOT: "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/x86_64/alpine-standard-3.18.2-x86_64.iso" devices: - /dev/kvm - /dev/vhost-net @@ -56,7 +56,7 @@ docker run -it --rm -e "BOOT=http://www.example.com/image.iso" --device=/dev/kvm ```yaml environment: - BOOT: "http://www.example.com/image.iso" + BOOT: "https://dl-cdn.alpinelinux.org/alpine/v3.18/releases/x86_64/alpine-standard-3.18.2-x86_64.iso" ``` It will be downloaded only once, during the initial run of the container.