From 5f4936a65582a3fbd862191c70b63f2b5c87da3d Mon Sep 17 00:00:00 2001 From: Christopher Baklid Date: Wed, 23 May 2018 19:04:59 +0200 Subject: remove vagrant --- scripts/vagrant_bootstrap.sh | 68 -------------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 scripts/vagrant_bootstrap.sh (limited to 'scripts') diff --git a/scripts/vagrant_bootstrap.sh b/scripts/vagrant_bootstrap.sh deleted file mode 100644 index 9839038f..00000000 --- a/scripts/vagrant_bootstrap.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -# Dependencies -apt install -y software-properties-common -apt install -y python-software-properties -apt install -y curl - -# Python 3.6 -add-apt-repository -y ppa:jonathonf/python-3.6 - -# Rethinkdb -curl -fsSL https://download.rethinkdb.com/apt/pubkey.gpg | apt-key add - -echo "deb http://download.rethinkdb.com/apt xenial main" | tee /etc/apt/sources.list.d/rethinkdb.list - -# 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" - -# Install -apt update -apt install -y apt-transport-https -apt install -y docker-ce -apt install -y rethinkdb -apt install -y python3.6 -apt install -y python3.6-dev -apt install -y build-essential -apt install -y python3-distutils - -# Compose -curl -Ls https://github.com/docker/compose/releases/download/1.21.2/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose -chmod +x /usr/local/bin/docker-compose - -# Pip -curl -s https://bootstrap.pypa.io/get-pip.py | python - -curl -s https://bootstrap.pypa.io/get-pip.py | python3 - -curl -s https://bootstrap.pypa.io/get-pip.py | python3.6 - - -# Pipenv -python3.6 -m pip install pipenv - -# RethinkDB config -tee /etc/rethinkdb/instances.d/rethinkdb.conf < /etc/environment <