log container improv

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