mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
14 lines
No EOL
236 B
Bash
14 lines
No EOL
236 B
Bash
#!/bin/bash
|
|
|
|
./dbench start > /tmp/bench.log &
|
|
|
|
output=$(
|
|
while ! curl "http://localhost:8000"
|
|
do
|
|
{ echo "Exit status of curl: $?"
|
|
} 1>&2
|
|
sleep 1
|
|
done
|
|
)
|
|
|
|
echo "${output}" | grep '<title> Login </title>' || exit 1 |