Vagrant 2.4.3 with vagrant-libvirt plugin support.
1.0K
This image aims to make easier for other Linux distributions to use the latest Vagrant version with the lastest vagrant-libvirt plugin.
The usage instructions below were gathered from the official documentation.
Create a script that makes easier to use the container:
#!/bin/bash
docker run -it --rm \
-e LIBVIRT_DEFAULT_URI \
-v /var/run/libvirt/:/var/run/libvirt/ \
-v ~/.vagrant.d:/.vagrant.d \
-v $(realpath "${PWD}"):${PWD} \
-w "${PWD}" \
--network host \
jpmsb/vagrant-libvirt:latest \
vagrant $@
#!/bin/bash
podman run -it --rm \
-e LIBVIRT_DEFAULT_URI \
-v /var/run/libvirt/:/var/run/libvirt/ \
-v ~/.vagrant.d:/.vagrant.d \
-v $(realpath "${PWD}"):${PWD} \
-w "${PWD}" \
--network host \
--entrypoint /bin/bash \
--security-opt label=disable \
jpmsb/vagrant-libvirt vagrant $@
Content type
Image
Digest
sha256:490180705…
Size
577.2 MB
Last updated
over 1 year ago
docker pull jpmsb/vagrant-libvirt