This commit is contained in:
2026-03-27 20:08:50 +00:00
parent b9ea970475
commit 68aae63242
+1 -6
View File
@@ -152,12 +152,7 @@ start_containers() {
for c in "${RUNNING_CONTAINERS[@]}"; do
info "Starting $c"
if ssh -i "$SSH_KEY" root@"$REMOTE_SERVER" "docker start $c" >/dev/null; then
success "$c started"
else
error "Failed to start $c"
fi
ssh -i "$SSH_KEY" root@"$REMOTE_SERVER" "docker start $c" >/dev/null
done
}