From 0c0d53326947bacbacacf4412a98fea763be462b Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Sun, 19 Aug 2018 18:53:47 +0000 Subject: [PATCH] add docker-compose to stretch config --- bin/setup | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/setup b/bin/setup index 79d71f4..7ff24fb 100755 --- a/bin/setup +++ b/bin/setup @@ -1,6 +1,9 @@ #!/bin/bash function do_debian_stretch_setup { + + git config credential.helper store + # FIXME assumes amd64 export DEBIAN_FRONTEND=noninteractive @@ -34,7 +37,7 @@ function do_debian_stretch_setup { $(lsb_release -cs) \ stable" sudo apt update - sudo apt install -y docker-ce + sudo apt install -y docker-ce docker-compose fi }