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

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.

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/