Skip to content

Instantly share code, notes, and snippets.

@didierfranc
Last active May 30, 2023 08:20
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save didierfranc/06088b4d8a6e0b7959e3bcf137021a3b to your computer and use it in GitHub Desktop.
Save didierfranc/06088b4d8a6e0b7959e3bcf137021a3b 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