add docker-cli and set correct column lengh in terminal
Build and Push Docker Container / build-and-push (push) Successful in 1m8s

This commit is contained in:
2026-04-17 08:40:33 +02:00
parent dc27d4ea69
commit 0609c7fedc
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ ENV TZ=""
RUN apk add --no-cache \
bash sudo openssh-server shadow tzdata curl git dcron coreutils grep sed gawk util-linux ca-certificates tmux fastfetch prometheus-node-exporter \
borgbackup \
borgbackup docker-cli \
&& mkdir -p \
/.ssh \
/backups \
+2 -1
View File
@@ -10,7 +10,8 @@ function sepurator {
if [ -n "${2:-}" ]; then
local end="$2"
else
local end="$COLUMNS"
local end
end=$(tput cols 2>/dev/null || echo "${COLUMNS:-80}")
fi
local start=1