Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker script to update to latest version #9

Merged
merged 1 commit into from
Dec 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .bootstrap/docker.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
sudo apt-get update
sudo apt-get -qqy install docker.io
sudo apt-get update && sudo apt-get install cgroup-lite apparmor
sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo apt-get update
sudo apt-get -qqy install lxc-docker
sudo reboot
1 change: 0 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision :shell, path: '.bootstrap/mongo.sh'
config.vm.provision :shell, path: '.bootstrap/docker.sh' # Docker needs reboot to work and will be installed last


# Hack to fix the "stdin: is not a tty" bug
config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"

Expand Down