├── .gitignore ├── Dockerfile ├── README.md └── Vagrantfile /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | MAINTAINER Joseph Frazier 3 | CMD ls 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Attempt a minimal reproduction of https://github.com/mitchellh/boot2docker-vagrant-box/issues/79 2 | 3 | At each commit in this repo, run the following 4 | 5 | vagrant version 6 | sw_vers 7 | vagrant global-status | grep -E "docker-host|$PWD" | tee /dev/stderr | cut -d ' ' -f 1 | xargs -t vagrant destroy -f && git checkout head^ && vagrant up 8 | -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- 1 | Vagrant.configure(2) do |config| 2 | config.vm.provider "docker" do |d| 3 | d.build_dir = "." 4 | d.remains_running = false 5 | end 6 | # https://github.com/mitchellh/boot2docker-vagrant-box/issues/79#issuecomment-167066247 7 | config.ssh.insert_key = true 8 | config.ssh.username = 'docker' 9 | config.ssh.password = 'tcuser' 10 | config.ssh.guest_port = 2222 11 | config.ssh.port = 22 12 | config.ssh.host = '127.0.0.1' 13 | end 14 | --------------------------------------------------------------------------------