From: riking Date: Mon, 9 Feb 2015 21:57:14 +0000 (-0800) Subject: Add prompt when running on device mapper X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7d87f85f911e60001f8583d36334cd58deffe6a8;p=discourse_docker.git Add prompt when running on device mapper --- diff --git a/launcher b/launcher index f04fcab..3c918da 100755 --- a/launcher +++ b/launcher @@ -94,6 +94,12 @@ prereqs() { echo "Your Docker installation is not using the recommended AuFS (union filesystem) and may be unstable." echo "If you are unable to bootstrap / stop your image please report the issue at:" echo "https://meta.discourse.org/t/discourse-docker-installation-without-aufs/15639" + echo "" + read -p "Continue without proper filesystem? [yN]" yn + case $yn in + [Yy]* ) break;; + * ) exit 1;; + esac fi # 3. running recommended docker version