Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorific authored Nov 12, 2023
1 parent f884cc5 commit 537be11
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,22 @@ PACKER_LOG=1 packer build \

## Using the images

Ironically on Linux, it's easiest to use Docker or Podman to load the required
dependencies for the Vagrant Libvirt plugin for Vagrant. For more information
refer to the [Vagrant Libvirt Documentation](https://vagrant-libvirt.github.io/vagrant-libvirt/installation#requirements).

```
docker run --interactive --tty --rm \
--env LIBVIRT_DEFAULT_URI \
--mount type=bind,source=/var/run/libvirt/,target=/var/run/libvirt/ \
--mount type=bind,source=$HOME/.vagrant.d,target=/.vagrant.d \
--mount type=bind,source=$(realpath "${PWD}"),target=${PWD} \
--workdir "${PWD}" \
--network host \
vagrantlibvirt/vagrant-libvirt:latest \
vagrant status
```

### QEMU x86_64 BIOS

```
Expand Down

0 comments on commit 537be11

Please sign in to comment.