Docker image of Ubuntu with build-essentials etc for development.
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "ubuntu-dev", primary: true do |ubuntu|
ubuntu.vm.synced_folder "./", "/home/vagrant/src"
ubuntu.vm.provider "docker" do |d|
d.image = "gbevan/vagrant-ubuntu-dev:latest"
d.has_ssh = true
end
end
end
Content type
Image
Digest
sha256:18982df4f…
Size
359.1 MB
Last updated
over 2 years ago
docker pull gbevan/vagrant-ubuntu-dev