setup-spoke.sh: add docker-cli to apt install list

This commit is contained in:
Justin Oros
2026-04-19 14:00:25 -07:00
parent 4cdddd649d
commit 0553420d04

View File

@@ -136,7 +136,7 @@ $PKG_INSTALL vim "$AUTOSSH_PKG" "$OPENSSH_PKG" git
info "Installing Docker..." info "Installing Docker..."
if ! command -v docker >/dev/null 2>&1; then if ! command -v docker >/dev/null 2>&1; then
if [ "$PKG_MANAGER" = "apt" ]; then if [ "$PKG_MANAGER" = "apt" ]; then
$PKG_INSTALL docker.io docker-compose $PKG_INSTALL docker.io docker-cli docker-compose
else else
curl -fsSL https://get.docker.com | bash curl -fsSL https://get.docker.com | bash
fi fi