From 20497dabb45bafa660c3c4dde581f9afef6fd9ed Mon Sep 17 00:00:00 2001 From: Dan Callahan Date: Tue, 4 Apr 2017 14:27:09 -0500 Subject: [PATCH] Restore installer note regarding AUFS on Linode See discussion in: https://github.com/dokku/dokku/issues/2675 Upstream Docker bug: https://github.com/docker/docker/issues/32361 --- bootstrap.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bootstrap.sh b/bootstrap.sh index ff7f29fcf..8c915b0ba 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -117,6 +117,12 @@ install-dokku-from-deb-package() { apt-get -qq -y install apt-transport-https echo "--> Installing docker" + if uname -r | grep -q linode; then + echo "--> NOTE: Using Linode? Docker may complain about missing AUFS support." + echo " You can safely ignore this warning." + echo " Installation will continue in 10 seconds." + sleep 10 + fi wget -nv -O - https://get.docker.com/ | sh echo "--> Installing dokku"