-
-
Save mhackersu/71df7eb0060e89117c8a70a08ec10242 to your computer and use it in GitHub Desktop.
Get Dokku working with Ubuntu 16.04 LTS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo sh -c " | |
wget -nv -O - https://packagecloud.io/gpg.key | apt-key add - | |
echo 'deb https://packagecloud.io/dokku/dokku/ubuntu/ trusty main' | tee /etc/apt/sources.list.d/dokku.list | |
apt-get update -qq > /dev/null | |
apt-get install sigil -t trusty # We're using the Ubuntu 14.04 package ;) | |
apt-mark hold sigil | |
wget https://raw.githubusercontent.com/dokku/dokku/master/bootstrap.sh | |
bash bootstrap.sh | |
" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment