Docker-friendly Vagrant boxes 2014-05-11 released
We provide Vagrant base boxes that are based on Ubuntu 14.04 and 12.04, 64-bit. These boxes are specifically customized to work well with Docker. Please learn more at the website
The changes in version 2014-05-11 are:
- The Ubuntu 12.04 boxes have been upgraded to kernel 3.13 (Trusty kernel). This is because even the updated VMWare Tools still occasionally caused kernel panics on kernel 3.8. In our tests, we’ve observed that VMWare Tools does not cause any kernel panics on kernel 3.13.
- No changes in the Ubuntu 14.04 boxes.
Related resources: Github | Prebuilt boxes | Vagrant Cloud | Discussion forum | Twitter
Upgrade instructions for Vagrant >= 1.5 with Vagrant Cloud
Run:
vagrant box outdated
Upgrade instructions for Vagrant <= 1.4, or Vagrant >= 1.5 without Vagrant Cloud
Destroy your Vagrant VM:
vagrant destroy
Remove your existing base box:
# Vagrant >= 1.5
vagrant box remove phusion-open-ubuntu-12.04-amd64 --provider virtualbox
vagrant box remove phusion-open-ubuntu-12.04-amd64 --provider vmware_fusion
# Vagrant <= 1.4
vagrant box remove phusion-open-ubuntu-12.04-amd64 virtualbox
vagrant box remove phusion-open-ubuntu-12.04-amd64 vmware_fusion
Start your VM again. Vagrant will automatically download the latest version of the box.
vagrant up