mirror of
https://gitlab.com/mobicoop/v3/service/configuration.git
synced 2026-03-17 15:45:50 +00:00
13 lines
218 B
Bash
13 lines
218 B
Bash
#!/bin/bash
|
|
testlog() {
|
|
docker logs v3-redis | grep -q "Ready to accept connections"
|
|
}
|
|
|
|
testlog 2> /dev/null
|
|
while [ $? -ne 0 ];
|
|
do
|
|
sleep 5
|
|
echo "Waiting for Test Redis to be up..."
|
|
testlog 2> /dev/null
|
|
done
|