I’m running DGraph locally through docker compose
. I now want to access my local DGraph Server from The Ratel UI. I already tried Brave Browser which did not work but Firefox does connect to my local http endpoint It just fails to authenticate. Ratel just prompts me to input a userId
and password
. I tried the dfault credentials groot
and password
but it doesn’t work.
This is my docker-compose.yml
file:
dgraph:
image: dgraph/standalone:latest
container_name: dgraph
networks:
- basenet
volumes:
- ./docker-data/dgraph:/dgraph
ports:
- 5080:5080
- 6080:6080
- 8080:8080
- 9080:9080
restart: on-failure
command: dgraph zero --my=zero:5080
networks:
basenet:
name: "sessions-network"
I tried inspecting the network request from Ratel to find out what causes the ui to fail and found out that I get a bunch of CORS related issues to the /query
endpoint.
Is that intended our could that be the cause for the connection failure?