From 92b7ca06ca72fb9147168b0312ff67e08f28e912 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Sun, 20 Aug 2017 19:31:32 -0400 Subject: [PATCH] Add Vagrant with docker support (#285) (#355) * Add Vagrantfile for development with an Ubuntu base box * Add Docker support to Vagrant VM --- .gitignore | 3 ++ Vagrantfile | 51 ++++++++++++++++++++++++++++++++ prepare.sh | 2 +- scripts/install_docker_ubuntu.sh | 38 ++++++++++++++++++++++++ 4 files changed, 93 insertions(+), 1 deletion(-) create mode 100644 Vagrantfile mode change 100755 => 100644 prepare.sh create mode 100644 scripts/install_docker_ubuntu.sh diff --git a/.gitignore b/.gitignore index ce8bcb3..11aabc0 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,6 @@ CTFd/uploads .data/ .ctfd_secret_key .*.swp + +# Vagrant +.vagrant diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..27cb756 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,51 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# Install tmux and virtualenv to support development +$preProvision= <