Last active
September 4, 2018 19:15
-
-
Save lestephane/93f5ab853ac9d3a3328dd3e5ae4386d5 to your computer and use it in GitHub Desktop.
Bionic Quad 9 Firefox Runner
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
vagrant up && vagrant ssh -- -X firefox |
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
Vagrant.configure("2") do |config| | |
config.vm.box = "ubuntu/bionic64" | |
config.vm.provision "shell", inline: <<-SHELL | |
apt-get update | |
apt-get install -y firefox | |
rm /etc/resolv.conf | |
echo "nameserver 9.9.9.9" > /etc/resolv.conf | |
SHELL | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment