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>
27 lines
725 B
Bash
Executable File
27 lines
725 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dockerCheckIsRunningForUser()
|
|
{
|
|
local type="$1"
|
|
|
|
# Check if Docker is running for the specified user
|
|
if [[ $type == "rootless" ]]; then
|
|
local docker_command='docker ps 2>&1'
|
|
local result=$(dockerCommandRunInstallUser "$docker_command")
|
|
elif [[ $type == "rooted" ]]; then
|
|
local docker_command='sudo docker ps 2>&1'
|
|
local result=$(eval "$docker_command")
|
|
else
|
|
echo "Invalid user type specified."
|
|
fi
|
|
|
|
# Check the result
|
|
if [[ $result =~ "Cannot connect to the Docker daemon" ]]; then
|
|
#echo "Docker is not running for the specified user."
|
|
:
|
|
else
|
|
#echo "Docker is running for the specified user."
|
|
:
|
|
fi
|
|
}
|