Skip to content

Instantly share code, notes, and snippets.

@mhackersu
Forked from didierfranc/Dokku.sh
Created September 27, 2017 04:08
Show Gist options
  • Save mhackersu/71df7eb0060e89117c8a70a08ec10242 to your computer and use it in GitHub Desktop.
Save mhackersu/71df7eb0060e89117c8a70a08ec10242 to your computer and use it in GitHub Desktop.
Get Dokku working with Ubuntu 16.04 LTS
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