exit 1
fi
- # 2. running aufs
- test=`$docker_path info 2> /dev/null | grep 'Driver: aufs'`
- if [[ "$test" =~ "aufs" ]] ; then : ; else
+ # 2. running aufs or btrfs
+ test=`$docker_path info 2> /dev/null | grep 'Driver: '`
+ if [[ "$test" =~ [aufs|btrfs] ]] ; then : ; else
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"