From 93f80b402b658335923f4064e667774fec65341c Mon Sep 17 00:00:00 2001 From: Elbert Alias Date: Sun, 14 May 2017 15:59:58 +1000 Subject: [PATCH] Remove Vagrantfile --- Vagrantfile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Vagrantfile diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index b4d0f218c..000000000 --- a/Vagrantfile +++ /dev/null @@ -1,20 +0,0 @@ -ENV['VAGRANT_DEFAULT_PROVIDER'] = 'docker' - -SYNCED_FOLDER = "/home/wappalyzer/synced" - -Vagrant.configure("2") do |config| - config.vm.synced_folder ".", SYNCED_FOLDER - - config.vm.provider "docker" do |d| - d.image = "wappalyzer/dev" - d.has_ssh = true - d.remains_running = true - end - - config.ssh.port = "22" - config.ssh.username = "wappalyzer" - config.ssh.private_key_path = "docker/ssh/insecure.key" - - config.vm.provision "shell", inline: "su - wappalyzer -c 'wappalyzer links'" - config.vm.provision "shell", inline: "echo Finished. Run \\`vagrant ssh\\` to access the environment." -end