bigchaindb/.ci/healthcheck.sh
AlbertA-Solicy ec28829d2a blockchain
2023-09-06 11:39:41 +04:00

5 lines
175 B
Bash
Executable File

if curl -f http://bigchaindb:3333 && curl -f http://tendermint:26657/abci_query; then
exit 0 # Both requests were successful
else
exit 1 # At least one request failed
fi