Skip to content

Instantly share code, notes, and snippets.

@camsom
Last active August 29, 2015 14:08
Show Gist options
  • Save camsom/806c7244a086acd80639 to your computer and use it in GitHub Desktop.
Save camsom/806c7244a086acd80639 to your computer and use it in GitHub Desktop.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "private_network", ip: "192.168.13.81"
config.vm.network "forwarded_port", guest: 8100, host: 8100
config.vm.synced_folder "../../", "/vagrant/"
config.vm.provision "shell",
config.vm.provision "shell",
inline: "apt-get -y update && apt-get -y install docker.io"
config.vm.provision "shell",
inline: "apt-get -y install golang && apt-get -y install bzr"
config.vm.provision "shell",
inline: "apt-get -y install mercurial"
config.vm.provision "shell",
inline: "curl -L https://github.com/docker/fig/releases/download/0.5.2/linux > /usr/local/bin/fig && chmod +x /usr/local/bin/fig"
end
@MichaelButkovic
Copy link

VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "private_network", ip: "192.168.13.81"
config.vm.network "forwarded_port", guest: 8100, host: 8100
config.vm.synced_folder "../../", "/vagrant/"
config.vm.provision "shell",
inline: "apt-get -y update && apt-get -y install docker.io"
config.vm.provision "shell",
inline: "apt-get -y install golang && apt-get -y install bzr && apt-get -y install mercurial"
config.vm.provision "shell",
inline: "curl -L https://github.com/docker/fig/releases/download/0.5.2/linux > /usr/local/bin/fig && chmod +x /usr/local/bin/fig"
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment