-
-
Notifications
You must be signed in to change notification settings - Fork 104
Open
Description
WaitForMessageInLogs uses --tail=all parameter which is not compatible with Podman's version of docker on Mac and returns
Error: invalid argument "all" for "--tail" flag: strconv.ParseInt: parsing "all": invalid syntax
as a workaround I used bash script
#!/bin/bash
# Docker wrapper for Podman compatibility
# Replaces --tail=all with --tail=-1
# Original command path
REAL_DOCKER="/usr/local/bin/docker"
fixed_args=()
for arg in "$@"; do
if [[ "$arg" == "--tail=all" ]]; then
fixed_args+=("--tail=-1")
else
fixed_args+=("$arg")
fi
done
exec "$REAL_DOCKER" "${fixed_args[@]}"
but more natural should be using numLines = -1 parameter from ClientStream.cs:16 in Podman's case
Metadata
Metadata
Assignees
Labels
No labels