From e6bd2a7400c56513944188058e8813cc10478da1 Mon Sep 17 00:00:00 2001 From: ianarsenault Date: Fri, 8 Oct 2021 11:39:22 -0400 Subject: [PATCH] Update docker_ce to use latest stable version (closes #5) --- templates/startup-script.sh.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/startup-script.sh.tmpl b/templates/startup-script.sh.tmpl index eca5319..fd61f7b 100644 --- a/templates/startup-script.sh.tmpl +++ b/templates/startup-script.sh.tmpl @@ -12,7 +12,7 @@ function install_base_packages() { } function install_docker_ce() { - sudo apt install docker.io=20.10.7-0ubuntu1~20.04.1 -y + sudo apt install docker.io -y sudo systemctl enable --now docker }