user/ci/wait-up.sh

7 lines
160 B
Bash
Raw Normal View History

2023-01-09 14:08:45 +00:00
#!/bin/bash
while ! docker logs v3-user --tail=1 | grep -q "Nest application successfully started";
do
sleep 5
echo "Waiting for Nest to be up..."
done