Loading templates/gitlab-ci-docker.yml +1 −1 Original line number Diff line number Diff line Loading @@ -1257,7 +1257,7 @@ docker-healthcheck: waiting_time=$(( $waiting_time + 5)) timestamp_to=$(( $timestamp_from + $waiting_time )) log_info "Testing events between $timestamp_from and $timestamp_to ..." full_result=$(docker events --filter container=$container_id --format="{{.Status}}" --since $timestamp_from --until $timestamp_to) || unexpected_error full_result=$(docker events --filter container=$container_id --format="{{.Action}}" --since $timestamp_from --until $timestamp_to) || unexpected_error if echo "$full_result" | grep ': healthy$' >/dev/null then healthcheck_result="healthy" Loading Loading
templates/gitlab-ci-docker.yml +1 −1 Original line number Diff line number Diff line Loading @@ -1257,7 +1257,7 @@ docker-healthcheck: waiting_time=$(( $waiting_time + 5)) timestamp_to=$(( $timestamp_from + $waiting_time )) log_info "Testing events between $timestamp_from and $timestamp_to ..." full_result=$(docker events --filter container=$container_id --format="{{.Status}}" --since $timestamp_from --until $timestamp_to) || unexpected_error full_result=$(docker events --filter container=$container_id --format="{{.Action}}" --since $timestamp_from --until $timestamp_to) || unexpected_error if echo "$full_result" | grep ': healthy$' >/dev/null then healthcheck_result="healthy" Loading