Created
October 5, 2020 08:09
-
-
Save ejoubaud/be3955d0966971e0ad7f0162a2a9f7b0 to your computer and use it in GitHub Desktop.
Vagrantfile ubuntu with ruby and go
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| | |
config.vm.box = "hashicorp/bionic64" | |
# Disable automatic box update checking. If you disable this, then | |
# boxes will only be checked for updates when the user runs | |
# `vagrant box outdated`. This is not recommended. | |
# config.vm.box_check_update = false | |
# Create a forwarded port mapping which allows access to a specific port | |
# within the machine from a port on the host machine. In the example below, | |
# accessing "localhost:8080" will access port 80 on the guest machine. | |
# NOTE: This will enable public access to the opened port | |
# config.vm.network "forwarded_port", guest: 80, host: 8080 | |
# Create a forwarded port mapping which allows access to a specific port | |
# within the machine from a port on the host machine and only allow access | |
# via 127.0.0.1 to disable public access | |
# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" | |
# Create a private network, which allows host-only access to the machine | |
# using a specific IP. | |
# config.vm.network "private_network", ip: "192.168.33.10" | |
# Create a public network, which generally matched to bridged network. | |
# Bridged networks make the machine appear as another physical device on | |
# your network. | |
# config.vm.network "public_network" | |
# Share an additional folder to the guest VM. The first argument is | |
# the path on the host to the actual folder. The second argument is | |
# the path on the guest to mount the folder. And the optional third | |
# argument is a set of non-required options. | |
# config.vm.synced_folder "../data", "/vagrant_data" | |
# Provider-specific configuration so you can fine-tune various | |
# backing providers for Vagrant. These expose provider-specific options. | |
# Example for VirtualBox: | |
# | |
# config.vm.provider "virtualbox" do |vb| | |
# # Display the VirtualBox GUI when booting the machine | |
# vb.gui = true | |
# | |
# # Customize the amount of memory on the VM: | |
# vb.memory = "1024" | |
# end | |
# provisioning with a shell script. | |
config.vm.provision "shell", inline: <<-SHELL | |
apt-get update | |
# pre-requisities for rbenv/ruby | |
apt-get install --yes autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm5 libgdbm-dev libdb-dev | |
# docker | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | |
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
apt-get install --yes docker-ce docker-ce-cli containerd.io | |
# Run docker without sudo for user vagrant | |
gpasswd -a vagrant docker | |
# docker-compose | |
curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
chmod +x /usr/local/bin/docker-compose | |
# pg for pg gem | |
apt-get install --yes libpq-dev | |
SHELL | |
config.vm.provision "shell", privileged: false, inline: <<-SHELL | |
# ruby/rbenv | |
curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-installer | bash | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc | |
echo 'eval "$(rbenv init -)"' >> ~/.bashrc | |
.rbenv/bin/rbenv install 2.6.6 | |
# go/goenv | |
git clone https://github.com/syndbg/goenv.git ~/.goenv | |
echo 'export GOENV_ROOT="$HOME/.goenv"' >> ~/.bashrc | |
echo 'export PATH="$GOENV_ROOT/bin:$PATH"' >> ~/.bashrc | |
echo 'eval "$(goenv init -)"' >> ~/.bashrc | |
echo 'export PATH="$GOROOT/bin:$PATH"' >> ~/.bashrc | |
echo 'export PATH="$PATH:$GOPATH/bin"' >> ~/.bashrc | |
~/.goenv/bin/goenv install 1.13.4 | |
~/.goenv/bin/goenv global 1.13.4 | |
SHELL | |
config.ssh.forward_agent = true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment