An open API service indexing awesome lists of open source software.

https://github.com/myoung34/docker-vagrant

For testing plugins against many vagrant versions.
https://github.com/myoung34/docker-vagrant

docker jenkins ruby vagrant

Last synced: 2 months ago
JSON representation

For testing plugins against many vagrant versions.

Awesome Lists containing this project

README

          

## docker-vagrant

Useful for testing plugins against many vagrant versions.
Contains ruby and vagrant. See tags for vagrant versions.
Example usage via Jenkins can [be found here](https://github.com/myoung34/vagrant-ovirt4/blob/master/Jenkinsfile)

### Build

1. `docker build . --build-arg vagrant_version=1.9.2`

### Run
```bash
docker run \
-d \
-v $(pwd):/opt/vagrant-plugin \
myoung34/vagrant:1.9.1 \
/bin/bash -ex \
-c "cd /opt/vagrant-plugin; bundle install; bundle exec rspec"
```