mirror of
https://github.com/goharbor/harbor
synced 2025-04-22 19:48:13 +00:00
9 lines
122 B
Bash
9 lines
122 B
Bash
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
if ping="$(redis-cli -h "127.0.0.1" ping)" && [ "$ping" = 'PONG' ]; then
|
|
exit 0
|
|
fi
|
|
|
|
exit 1 |