DIB elements for Docker

Change-Id: Id7dfdd0390ffec2e19a190ec5f974d96bc178387
This commit is contained in:
Alexey Deryugin 2015-02-17 13:41:12 +03:00
parent 52b43e621d
commit 02109c9615
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1 @@
This element install Docker on Ubuntu/CentOS

View File

@ -0,0 +1,16 @@
#!/bin/bash
set -eu
if [ -e /etc/lsb-release ]; then
if [ -e /usr/lib/apt/methods/https ]; then
apt-get update
apt-get install apt-transport-https
fi
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
echo "deb https://get.docker.com/ubuntu docker main" > /etc/apt/sources.list.d/docker.list
apt-get update
apt-get -y install lxc-docker
else
yum -y install docker
fi