From f9da758bb5df0f028c9f5396d573b3a77eedf29f Mon Sep 17 00:00:00 2001 From: Jackson Delahunt Date: Tue, 12 Feb 2019 09:59:11 +1100 Subject: [PATCH] bootstrap --- scripts/bootstrap-host.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-host.sh b/scripts/bootstrap-host.sh index 81634bd..fb0ae1b 100755 --- a/scripts/bootstrap-host.sh +++ b/scripts/bootstrap-host.sh @@ -11,10 +11,14 @@ export $(sh $REPO_ROOT/scripts/environment.sh) # Install utilities apt update && apt install --yes && \ - docker.io \ + curl \ ksshaskpass \ vcsh +# Install Docker +sh -c "$(curl -fsSL get.docker.com)" && + usermod -aG docker $DESKTOP_ENVIRONMENT_USER + # Enable password-less sudo for the sudo group echo "%sudo ALL=(ALL) NOPASSWD:ALL" | tee -a /etc/sudoers