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>
26 lines
748 B
Bash
Executable File
26 lines
748 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dockerServiceStop()
|
|
{
|
|
local type="$1"
|
|
|
|
if [[ "$type" == "rooted" ]]; then
|
|
if [[ "$docker_rooted_found" == "true" ]]; then
|
|
isNotice "Stopping rooted Docker service...this may take a moment..."
|
|
|
|
local result=$(sudo systemctl stop docker)
|
|
checkSuccess "Stopping Rooted Docker Service"
|
|
|
|
local result=$(sudo systemctl disable docker)
|
|
checkSuccess "Disabling Rooted Docker Service"
|
|
fi
|
|
fi
|
|
|
|
if [[ "$type" == "rootless" ]]; then
|
|
if [[ "$docker_rootless_found" == "true" ]]; then
|
|
isNotice "Uninstalling rootless Docker service...this may take a moment..."
|
|
uninstallDockerRootless;
|
|
fi
|
|
fi
|
|
|
|
} |