@@ -20,16 +20,6 @@ dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/"
2020# Remove any temporary work files, including the postinstall.sh script
2121rm -f /home/${account} /{* .iso,postinstall* .sh}
2222
23- # Install some essentials and mDNS daemon
24- apt-get install fail2ban python-software-properties curl apt-transport-https -y
25-
26- # Add the Nginx repository key to our local keychain
27- # using apt-key finger you can check the fingerprint matches 573B FD6B 3D8F BC64 1079 A6AB ABF5 BD82 7BD9 BF62
28- curl http://nginx.org/keys/nginx_signing.key | apt-key add -
29-
30- # Add the Nginx repository to our apt sources list
31- echo deb http://nginx.org/packages/ubuntu precise nginx > /etc/apt/sources.list.d/nginx-ppa.list
32-
3323# Add the Docker repository key to your local keychain
3424# using apt-key finger you can check the fingerprint matches 36A1 D786 9245 C895 0F96 6E92 D857 6A8B A88D 21E9
3525curl https://get.docker.io/gpg | apt-key add -
@@ -42,15 +32,23 @@ apt-get update
4232apt-get dist-upgrade -yq
4333
4434# install required packages
45- apt-get install lxc-docker-0.7.6 git inotify-tools make python-setuptools python-pip -yq
35+ apt-get install lxc-docker-0.8.0 fail2ban curl git inotify-tools make python-setuptools python-pip -yq
4636
4737# wait for docker to start
4838while [ ! -e /var/run/docker.sock ] ; do
4939 inotifywait -t 2 -e create $( dirname /var/run/docker.sock)
5040done
5141
52- # pull progrium/cedarish docker image
53- docker pull progrium/cedarish
42+ # pull docker images
43+ docker pull deis/logger
44+ docker pull deis/server
45+ docker pull deis/worker
46+ docker pull deis/builder
47+ docker pull deis/database
48+ docker pull deis/registry
49+ docker pull deis/discovery
50+ docker pull deis/cache
51+ docker pull deis/data
5452
5553# install chef 11.x deps
5654apt-get install -yq ruby1.9.1 ruby1.9.1-dev make
0 commit comments