Hi,
I am trying to access mg_client inside a docker container but unfortunately, I am unable to connect it. I have followed instructions from the docs.
Here is the docker-compose.yaml -
version: "3"
services:
redis:
image: redislabs/redisgraph
container_name: redis
restart: unless-stopped
ports:
- "6379:6379"
memgraph:
image: memgraph
container_name: memgraph
restart: unless-stopped
ports:
- "7687:7687"
CLI returns back an error -
What can be a possible mistake from my end?
PS: I am trying to create a Project with Memgraph, Neo4j, and RedisGraph running simultaneously and accessing each datastore using Python libs/adapter. This is the very initial step towards it.