Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Working with Vagrant

Working with Vagrant

Slides from my talk I gave at the OTS leaners group on 19.05.2015

Jan Schulte

May 19, 2015
Tweet

More Decks by Jan Schulte

Other Decks in Technology

Transcript

  1. $whoami $ Jan Schulte $ Software developer $ Berlin $

    Asquera GmbH $ Rails Girls Coach $ Learning groups (Rubyseeds & Codingcats) $ Twitter: @neinasaservice
  2. Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" config.vm.network "private_network", ip: "192.168.33.10"

    config.vm.provision "shell", inline <<-SHELL sudo apt-get install git SHELL end more%informa*on%at%vagrantup.com
  3. (jan@barad-dur)$ vagrant up ... (jan@barad-dur)$ vagrant ssh vagrant@trusty64$: git --version

    git version 2.3.3 vagrant@trusty64$: exit (jan@barad-dur)$ vagrant destroy -f