From 26c2b762ca0e204035ff44bbdaedd5de1f491b82 Mon Sep 17 00:00:00 2001 From: Marwolf Date: Sat, 18 Aug 2018 22:52:01 -0400 Subject: [PATCH] Change Docker default storage driver to devicemapper --- Linux_Installer.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Linux_Installer.sh b/Linux_Installer.sh index 56e80a0..e950b49 100755 --- a/Linux_Installer.sh +++ b/Linux_Installer.sh @@ -105,6 +105,13 @@ if [ "$install" == "1" ]; then fi # Ubuntu Docker <=================================================== echo "" + echo "Setting Docker to have the correct storage driver." + echo "" + echo '{ + "storage-driver": "devicemapper" +}' | sudo tee --append /etc/docker/daemon.json && sudo service docker restart + echo "" + echo "" echo "Configuring UFW to allow good ports and block MySQL from outside." echo ""