https://github.com/gbevan/vagrant-centos-dev
Docker image of CentOS with developer tools etc for development. For use with Vagrant as a package build environment for the PasTmon project.
https://github.com/gbevan/vagrant-centos-dev
Last synced: 4 months ago
JSON representation
Docker image of CentOS with developer tools etc for development. For use with Vagrant as a package build environment for the PasTmon project.
- Host: GitHub
- URL: https://github.com/gbevan/vagrant-centos-dev
- Owner: gbevan
- License: mit
- Created: 2015-03-01T19:23:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-28T14:32:44.000Z (about 11 years ago)
- Last Synced: 2025-03-14T02:29:17.094Z (over 1 year ago)
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gbevan/vagrant-centos-dev
-------------------------
Docker image of CentOS with developer tools etc for development. For use with Vagrant as a package build environment for the PasTmon project.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "centos-dev", primary: true do |centos|
centos.vm.synced_folder "/", "/home/vagrant/src"
centos.vm.provider "docker" do |d|
d.image = "gbevan/vagrant-centos-dev:latest"
d.has_ssh = true
end
end
end
Build images using:
docker build -t gbevan/vagrant-centos-dev:latest .
docker build -t gbevan/vagrant-centos-dev:centos6 centos6/
docker build -t gbevan/vagrant-centos-dev:centos7 centos7/