1. 程式人生 > >Ubuntu14.04 Docker 自動安裝指令碼

Ubuntu14.04 Docker 自動安裝指令碼

docker_install.sh

#!/bin/bash

# sources.list 是阿里雲的源,見下面
sudo cp sources.list /etc/apt/sources.list

sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install software-properties-common python-software-properties -y
sudo add-apt-repository ppa:saiarcot895/myppa -y 
sudo apt-get update
sudo apt-get install apt-fast -y

sudo
apt-fast install apt-transport-https ca-certificates -y sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D sudo bash -c 'echo deb https://apt.dockerproject.org/repo ubuntu-trusty main > /etc/apt/sources.list.d/docker.list' sudo apt-get update sudo
apt-get purge lxc-docker sudo apt-cache policy docker-engine sudo apt-fast install linux-image-extra-$(uname -r) -y sudo apt-fast install docker-engine --force-yes -y sudo service docker start sudo groupadd docker sudo usermod -aG docker $USER sudo service docker restart sudo docker run hello-world

sources.list

deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse