mirror of
https://github.com/okxlin/appstore.git
synced 2026-09-23 08:01:00 +00:00
Package the latest and v3.5.1 releases with loopback-only defaults and documented Docker Socket access.
8 lines
160 B
Bash
Executable File
8 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [[ ! -S /var/run/docker.sock ]]; then
|
|
printf '%s\n' "Docker socket not found: /var/run/docker.sock" >&2
|
|
exit 1
|
|
fi
|