From 2cf8cc3b3a200ca369a9c3bd67daaefb1a6da30d Mon Sep 17 00:00:00 2001 From: unclejack Date: Fri, 21 Feb 2014 18:07:51 +0200 Subject: [PATCH] Remove Vagrantfile and remove it from all docs This removes the Vagrantfile and updates the documentation to remove the steps which explain how to install Docker in a VM via Vagrant. Docker-DCO-1.1-Signed-off-by: Cristian Staretu (github: unclejack) Upstream-commit: 67d55860a52bec8b1a1327355b4f27674ec912aa Component: engine --- components/engine/.gitignore | 1 + components/engine/MAINTAINERS | 1 - components/engine/Vagrantfile | 206 ----------------- .../sources/contributing/devenvironment.rst | 8 - components/engine/docs/sources/faq.rst | 6 +- components/engine/docs/sources/index.rst | 2 +- .../docs/sources/installation/amazon.rst | 111 +-------- .../docs/sources/installation/windows.rst | 213 +++--------------- 8 files changed, 37 insertions(+), 511 deletions(-) delete mode 100644 components/engine/Vagrantfile diff --git a/components/engine/.gitignore b/components/engine/.gitignore index a40d9e067c..0087b47302 100644 --- a/components/engine/.gitignore +++ b/components/engine/.gitignore @@ -22,3 +22,4 @@ bundles/ .git/ vendor/pkg/ pyenv +Vagrantfile diff --git a/components/engine/MAINTAINERS b/components/engine/MAINTAINERS index 895fba563a..a08f8f3140 100644 --- a/components/engine/MAINTAINERS +++ b/components/engine/MAINTAINERS @@ -6,4 +6,3 @@ Michael Crosby (@crosbymichael) api.go: Victor Vieux (@vieux) Dockerfile: Tianon Gravi (@tianon) Makefile: Tianon Gravi (@tianon) -Vagrantfile: Cristian Staretu (@unclejack) diff --git a/components/engine/Vagrantfile b/components/engine/Vagrantfile deleted file mode 100644 index 23f262020a..0000000000 --- a/components/engine/Vagrantfile +++ /dev/null @@ -1,206 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -BOX_NAME = ENV['BOX_NAME'] || "ubuntu" -BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64.box" -VF_BOX_URI = ENV['BOX_URI'] || "http://files.vagrantup.com/precise64_vmware_fusion.box" -AWS_BOX_URI = ENV['BOX_URI'] || "https://github.com/mitchellh/vagrant-aws/raw/master/dummy.box" -AWS_REGION = ENV['AWS_REGION'] || "us-east-1" -AWS_AMI = ENV['AWS_AMI'] || "ami-69f5a900" -AWS_INSTANCE_TYPE = ENV['AWS_INSTANCE_TYPE'] || 't1.micro' -SSH_PRIVKEY_PATH = ENV['SSH_PRIVKEY_PATH'] -PRIVATE_NETWORK = ENV['PRIVATE_NETWORK'] - -# Boolean that forwards the Docker dynamic ports 49000-49900 -# See http://docs.docker.io/en/latest/use/port_redirection/ for more -# $ FORWARD_DOCKER_PORTS=1 vagrant [up|reload] -FORWARD_DOCKER_PORTS = ENV['FORWARD_DOCKER_PORTS'] -VAGRANT_RAM = ENV['VAGRANT_RAM'] || 512 -VAGRANT_CORES = ENV['VAGRANT_CORES'] || 1 - -# You may also provide a comma-separated list of ports -# for Vagrant to forward. For example: -# $ FORWARD_PORTS=8080,27017 vagrant [up|reload] -FORWARD_PORTS = ENV['FORWARD_PORTS'] - -# A script to upgrade from the 12.04 kernel to the raring backport kernel (3.8) -# and install docker. -$script = <