From bb6e1e1260b0375765c80f4f98ebac72cf888262 Mon Sep 17 00:00:00 2001 From: Sam Mesterton-Gibbons Date: Sat, 9 Jan 2021 00:22:38 +0000 Subject: [PATCH] Swap to use Ubuntu for demo as well It doesn't actually matter what box we use - might as well be the same one as for Vagrant runner. --- README.md | 5 ----- Vagrantfile | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 5f57561..d81fc0e 100644 --- a/README.md +++ b/README.md @@ -93,11 +93,6 @@ Run `DHCP_RANGE_START=192.168.0.1 vagrant up netboot demo`. You'll probably be prompted twice for the network to attach to. -### Running the demo on Windows with Virtualbox -Unfortunately the PXE boot box used for the demo is only built for Virtualbox, -if you're using Hyper-V you'll have to create yourself a VM and configure it -to boot from the network (disable Secure Boot too, probably). - ## Building Locally Should be as simple as `docker build .` diff --git a/Vagrantfile b/Vagrantfile index 76ffdda..51ca951 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,7 +4,7 @@ Vagrant.configure("2") do |config| # Define a Vagrant machine which should PXE boot off the docker cotnainer config.vm.define :demo, primary: true do |demo| - demo.vm.box = "clink15/pxe" + demo.vm.box = "bento/ubuntu-20.04" # Bridge the VM onto your host's network demo.vm.network "public_network"