mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
install kernel & python-software-properties separately
The bootstrap script was installing software-properties-common. The package which contains add-apt-repository is: python-software-properties $ apt-file search add-apt-repository python-software-properties: /usr/bin/add-apt-repository The kernel failed to install for me in vagrant, so that step should be done separately to not break the install. The system might already have a kernel which is fully docker compatible.
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
DOKKU_REPO=${DOKKU_REPO:-"https://github.com/progrium/dokku.git"}
|
||||
DOKKU_STACK=${DOKKU_STACK:-"https://s3.amazonaws.com/progrium-dokku/progrium_buildstep.tgz"}
|
||||
|
||||
apt-get install -y linux-image-extra-`uname -r` software-properties-common
|
||||
apt-get install -y linux-image-extra-`uname -r`
|
||||
apt-get install -y python-software-properties
|
||||
add-apt-repository -y ppa:dotcloud/lxc-docker
|
||||
apt-get update && apt-get install -y lxc-docker git ruby nginx make dnsutils
|
||||
|
||||
|
||||
Reference in New Issue
Block a user