librelad 875a60f90f LibrePortal v0.1.0 — initial release
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>
2026-05-21 20:37:54 +01:00

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
}