Skip to content

Instantly share code, notes, and snippets.

@bchevallereau
Created February 21, 2017 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bchevallereau/a5cefde059d9feaa2a297efea575e4af to your computer and use it in GitHub Desktop.
Save bchevallereau/a5cefde059d9feaa2a297efea575e4af to your computer and use it in GitHub Desktop.
Vagrant file for Ephesoft Linux on Centos 6.6
Vagrant.configure(2) do |config|
config.vm.box = "puppetlabs/centos-6.6-64-puppet"
# Redirect Tomcat Port
config.vm.network "forwarded_port", guest: 8080, host: 8080
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment