Vagrantfile for creating and running an Ubuntu VM with large disk, preconfigured IP address, provisioned Docker and Docker Compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at | |
# https://docs.vagrantup.com. | |
# Every Vagrant development environment requires a box. You can search for | |
# boxes at https://atlas.hashicorp.com/search. | |
# an alternative to this Ubuntu 14.04 box is the "v0rtex/xenial64" with the 16.04 LTS | |
config.vm.box = "ubuntu/trusty64" | |
# access a port on your host machine (via localhost) and have all data forwarded to a port on the guest machine. | |
config.vm.network "forwarded_port", guest: 9092, host: 9092 | |
# Create a private network, which allows host-only access to the machine | |
# using a specific IP. | |
config.vm.network "private_network", ip: "192.168.188.110" | |
#define a larger than default (40GB) disksize | |
config.disksize.size = '50GB' | |
config.vm.provider "virtualbox" do |vb| | |
vb.name = 'docker-compose-vm' | |
vb.memory = 4096 | |
vb.cpus = 1 | |
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] | |
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"] | |
end | |
# set up Docker in the new VM: | |
config.vm.provision :docker | |
# install docker-compose into the VM and run the docker-compose.yml file - if it exists - whenever the VM starts (https://github.com/leighmcculloch/vagrant-docker-compose) | |
config.vm.provision :docker_compose, yml: "/vagrant/docker-compose.yml", run:"always" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment