How can I start the provisioning of Docker via an external Dockerfile? My Vagrantfile looks like this at the moment
Vagrant.configure(\"2\") do |config| config
one workaround is through shell provisioning:
config.vm.provision "shell", inline: "docker build -t username/image /vagrant; docker run -d username/image"