How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "yungsang/boot2docker"
  config.vm.box_version = "0.8.2"
end
vagrant init yungsang/boot2docker \
  --box-version 0.8.2
vagrant up

This version was created about 10 years ago.

boot2docker v0.8.0 with Docker v0.10.0

Sample Vagrantfile

VAGRANTFILE_API_VERSION = "2"

Vagrant.require_version ">= 1.5.0"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "yungsang/boot2docker"

  config.vm.network "private_network", ip: "192.168.33.10"

  config.vm.synced_folder ".", "/vagrant", type: "nfs"

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "busybox",
      cmd: "echo hello"
  end
end

Cf.) https://gist.github.com/YungSang/9183913

For VirtualBox

$ vagrant up

For Parallels

$ vagrant plugin install vagrant-parallels
$ vagrant up --provider parallels
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)