I’m trying to get a provisioner working when Docker is used as a provider. When I try using the shell provisioner, nothing is outputted when running vagrant provision
:
Vagrantfile:
Vagrant.configure("2") do |config|
config.vm.provider "docker" do |d|
d.image = "debian"
d.create_args = ["-i"]
d.privileged = true
end
config.vm.provision "shell",
inline: "echo Hi"
end
Does the provisioner only work with VMs or something?