Add Docker installation to kasm-install.sh

Added installation steps for Docker in the setup script.
This commit is contained in:
Tobias
2025-11-19 10:23:26 +01:00
committed by GitHub
parent 5df2768767
commit 51679c7921

View File

@@ -13,6 +13,10 @@ setting_up_container
network_check
update_os
msg_info "Installing Docker"
$STD sh <(curl -fsSL https://get.docker.com/)
msg_ok "Installed Docker"
msg_info "Detecting latest Kasm Workspaces release"
KASM_URL=$(curl -fsSL "https://www.kasm.com/downloads" | tr '\n' ' ' | grep -oE 'https://kasm-static-content[^"]*kasm_release_[0-9]+\.[0-9]+\.[0-9]+\.[a-z0-9]+\.tar\.gz' | head -n 1)
if [[ -z "$KASM_URL" ]]; then