11 lines
249 B
Bash
11 lines
249 B
Bash
#!/bin/bash
|
|
set -xe
|
|
|
|
apt-get update
|
|
apt-get install -qq -y --force-yes curl apt-transport-https
|
|
apt-get purge -qq -y lxc-docker* || true
|
|
curl -sSL https://get.docker.com/ | sh
|
|
|
|
/bin/bash /vagrant/test/vagrant-spec/scripts/ubuntu-install-vagrant.sh
|
|
|