Skip to content

Instantly share code, notes, and snippets.

@lestephane
Last active September 4, 2018 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lestephane/93f5ab853ac9d3a3328dd3e5ae4386d5 to your computer and use it in GitHub Desktop.
Save lestephane/93f5ab853ac9d3a3328dd3e5ae4386d5 to your computer and use it in GitHub Desktop.
Bionic Quad 9 Firefox Runner
vagrant up && vagrant ssh -- -X firefox
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