This version was created 11 months ago. This is the currently released version . v0.1.0 This box ships without guest additions and uses password auth. A minimal Vagrantfile looks like this: Vagrant.configure(2) do |config| config.vm.box = 'travis-ci/ci-minimal-trusty64' config.ssh.username = 'travis' config.ssh.password = 'travis' config.vm.synced_folder '.', '/vagrant', disabled: true end