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.
- Host: GitHub
- URL: https://github.com/myoung34/docker-vagrant
- Owner: myoung34
- Created: 2017-03-04T14:21:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-22T02:34:32.000Z (about 9 years ago)
- Last Synced: 2025-02-16T00:37:07.489Z (over 1 year ago)
- Topics: docker, jenkins, ruby, vagrant
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```