mirror of
https://gitlab.com/mobicoop/v3/service/territory.git
synced 2026-01-13 08:22:39 +00:00
13 lines
225 B
Bash
13 lines
225 B
Bash
#!/bin/bash
|
|
testlog() {
|
|
docker logs v3-territory-db-test | grep -q "listening on IPv6 address"
|
|
}
|
|
|
|
testlog 2> /dev/null
|
|
while [ $? -ne 0 ];
|
|
do
|
|
sleep 5
|
|
echo "Waiting for Test DB to be up..."
|
|
testlog 2> /dev/null
|
|
done
|