Skip to content

Instantly share code, notes, and snippets.

@tsuBee5
Created June 6, 2018 00:04
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 tsuBee5/da359d90e5c63950eccee0b65d51ac75 to your computer and use it in GitHub Desktop.
Save tsuBee5/da359d90e5c63950eccee0b65d51ac75 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# Box Settings
config.vm.box = "ubuntu/trusty64"
# VM Provider Settings
config.vm.provider "virtualbox" do |vb|
vb.gui = false
vb.memory = "1024"
end
# Network Settings
# config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.network "private_network", ip: "192.168.33.10"
# Syn-folder Settings
config.vm.synced_folder "../data", "/var/www/html"
# Provision Settings
config.vm.provision "shell", path: "install.sh"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment