From 5c55f903c82c91dfd72de38c5d4888c8ebe3687a Mon Sep 17 00:00:00 2001 From: efrick Date: Wed, 18 Dec 2024 11:22:01 -0500 Subject: [PATCH] Add -y flad to final installation command The actual installation step was failing because it was prompting for confirmation. This will fail when using cURL to pipe to BASH. --- debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian.sh b/debian.sh index 20173b7..3eee7e9 100644 --- a/debian.sh +++ b/debian.sh @@ -17,4 +17,4 @@ echo \ sudo apt-get update echo "Install Docker" -sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin +sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin