A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
37 lines
1.3 KiB
Bash
Executable File
37 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
installDockerRooted()
|
|
{
|
|
# Check if Docker is already installed
|
|
if [[ "$OS_TYPE" == "Ubuntu" || "$OS_TYPE" == "Debian" ]]; then
|
|
isHeader "Rooted Docker Installation"
|
|
if command -v docker &> /dev/null; then
|
|
isSuccessful "Docker is already installed."
|
|
else
|
|
local result=$(sudo curl -fsSL https://get.docker.com | sh )
|
|
checkSuccess "Downloading & Installing Docker"
|
|
|
|
dockerServiceStart;
|
|
|
|
while true; do
|
|
echo ""
|
|
isNotice "It's recommended to restart your system after installing Docker."
|
|
echo ""
|
|
isQuestion "Would you like to restart your system as recommended? (y/n): "
|
|
read -p "" restart_after_docker_install
|
|
if [[ -n "$restart_after_docker_install" ]]; then
|
|
break
|
|
fi
|
|
isNotice "Please provide a valid input."
|
|
done
|
|
if [[ "$restart_after_docker_install" == [yY] ]]; then
|
|
sudo reboot
|
|
fi
|
|
if [[ "$restart_after_docker_install" == [nN] ]]; then
|
|
isNotice "Skipping reboot..."
|
|
fi
|
|
fi
|
|
|
|
isSuccessful "Docker has been installed and configured."
|
|
fi
|
|
} |