From 3fd44c2832633a7bc9f0020fd77e113f0cd6d7ef Mon Sep 17 00:00:00 2001 From: Sudhir Date: Sun, 3 Nov 2019 20:31:14 +0530 Subject: [PATCH] Fix interactive input requested in setup When docker-ce is installed it brings up an interactive prompt and in mac terminal it cannot be responded to and the setup as a result gets stuck. --- vagrant/ubuntu/install-docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/vagrant/ubuntu/install-docker.sh b/vagrant/ubuntu/install-docker.sh index c21a1e4..e742524 100644 --- a/vagrant/ubuntu/install-docker.sh +++ b/vagrant/ubuntu/install-docker.sh @@ -1,4 +1,5 @@ #!/bin/bash +export DEBIAN_FRONTEND=noninteractive apt-get update \ && apt-get install -y \ apt-transport-https \