You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
until curl -s http://dgraph:8080/health | grep -q '\"status\":\"healthy\"'; do
echo 'Waiting for Dgraph to be ready...';
sleep 3;
done;
echo 'Dgraph is ready. Attempting to post schema...';
until curl -s -X POST http://dgraph:8080/admin/schema --data-binary '@/app/db-schema.graphql' | grep -q -v '\"message\":\"Unavailable: Server not ready.\"'; do