Last active
January 27, 2019 15:06
-
-
Save nishitaniyuki/8996585abb0d7e7653a48b487688c758 to your computer and use it in GitHub Desktop.
This file contains hidden or 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| | |
| config.vm.box = "ubuntu/bionic64" | |
| config.vm.hostname = "septembertea" | |
| config.vm.provider "virtualbox" do |vb| | |
| vb.name = "septembertea" | |
| vb.memory = 1024 * 8 | |
| vb.cpus = 6 | |
| vb.gui = true | |
| vb.customize [ | |
| "modifyvm", :id, | |
| "--vram", "256", | |
| "--clipboard", "bidirectional", | |
| "--draganddrop", "bidirectional", | |
| "--ioapic", "on" | |
| ] | |
| end | |
| config.vm.provision "shell", inline: <<-SHELL | |
| apt-get update | |
| apt-get install -y curl git ubuntu-desktop vim zsh | |
| SHELL | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment