Skip to content

Instantly share code, notes, and snippets.

@ssmirr
Created November 19, 2018 00:26
Show Gist options
  • Save ssmirr/81980b0dd6bf03efafc8805df2c0d4af to your computer and use it in GitHub Desktop.
Save ssmirr/81980b0dd6bf03efafc8805df2c0d4af to your computer and use it in GitHub Desktop.
simple Vagrantfile with name and ip address
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.define "vagrant-vm" do |t|
end
config.vm.hostname = "vagrant-vm"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment