mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
71 lines
2.4 KiB
Ruby
71 lines
2.4 KiB
Ruby
|
# -*- mode: ruby -*-
|
||
|
# vi: set ft=ruby :
|
||
|
|
||
|
Vagrant.configure("2") do |config|
|
||
|
config.vm.box = "ubuntu/trusty64"
|
||
|
|
||
|
config.vm.provider "virtualbox" do |v|
|
||
|
v.memory = 2048
|
||
|
v.cpus = 2
|
||
|
end
|
||
|
|
||
|
############################################################
|
||
|
# Oh My ZSH Install section
|
||
|
|
||
|
# Install git and zsh prerequisites
|
||
|
config.vm.provision :shell, inline: "apt-get -y install git"
|
||
|
config.vm.provision :shell, inline: "apt-get -y install zsh"
|
||
|
|
||
|
# Clone Oh My Zsh from the git repo
|
||
|
config.vm.provision :shell, privileged: false,
|
||
|
inline: "git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh"
|
||
|
|
||
|
# Copy in the default .zshrc config file
|
||
|
config.vm.provision :shell, privileged: false,
|
||
|
inline: "cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc"
|
||
|
|
||
|
# Change the vagrant user's shell to use zsh
|
||
|
config.vm.provision :shell, inline: "chsh -s /bin/zsh vagrant"
|
||
|
|
||
|
############################################################
|
||
|
|
||
|
# Install nvm
|
||
|
config.vm.provision "nvm",
|
||
|
type: "shell",
|
||
|
privileged: false,
|
||
|
inline: <<-SHELL
|
||
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | sh
|
||
|
echo "source /home/vagrant/.nvm/nvm.sh" >> /home/vagrant/.zshrc
|
||
|
source /home/vagrant/.zshrc
|
||
|
nvm install 7.1.0
|
||
|
SHELL
|
||
|
|
||
|
# Install lamp
|
||
|
config.vm.provision :shell, path: "bootstrap.sh"
|
||
|
|
||
|
config.vm.provision :shell, inline: "apt-get install -y unzip"
|
||
|
|
||
|
# Install composer
|
||
|
config.vm.provision :shell, inline: "curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer"
|
||
|
|
||
|
config.vm.provision "set startup directory",
|
||
|
type: "shell", inline: "echo 'cd /vagrant' >> /home/vagrant/.zshrc"
|
||
|
|
||
|
# Create a forwarded port mapping which allows access to a specific port
|
||
|
# within the machine from a port on the host machine. In the example below,
|
||
|
# accessing "localhost:8080" will access port 80 on the guest machine.
|
||
|
config.vm.network "forwarded_port", guest: 80, host: 3000
|
||
|
config.vm.network "forwarded_port", guest: 3306, host: 3307, host_ip: "127.0.0.1"
|
||
|
|
||
|
config.ssh.forward_agent = true
|
||
|
|
||
|
# Create a private network, which allows host-only access to the machine
|
||
|
# using a specific IP.
|
||
|
# config.vm.network "private_network", ip: "192.168.33.10"
|
||
|
|
||
|
# Create a public network, which generally matched to bridged network.
|
||
|
# Bridged networks make the machine appear as another physical device on
|
||
|
# your network.
|
||
|
# config.vm.network "public_network"
|
||
|
end
|