Sign inSign up

jpmsb/vagrant-libvirt

By jpmsb

Updated over 1 year ago

Vagrant 2.4.3 with vagrant-libvirt plugin support.

Image
Developer tools
Operating systems
0

1.0K

jpmsb/vagrant-libvirt repository overview

vagrant-libvirt plugin for Vagrant

This image aims to make easier for other Linux distributions to use the latest Vagrant version with the lastest vagrant-libvirt plugin.

Usage

The usage instructions below were gathered from the official documentation.

Create a script that makes easier to use the container:

  • Docker
#!/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 $@
  • Podman
#!/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 $@

Tag summary

Content type

Image

Digest

sha256:490180705

Size

577.2 MB

Last updated

over 1 year ago

docker pull jpmsb/vagrant-libvirt