cosmos-multisig-ui/stack-orchestrator/compose/docker-compose-dgraph.yml
IshaVenikar be55efd877
All checks were successful
/ test (pull_request) Successful in 1m16s
/ build (pull_request) Successful in 2m2s
/ lint (pull_request) Successful in 1m19s
Add GQL schema in run script
2025-05-26 16:34:39 +05:30

34 lines
602 B
YAML

services:
zero:
image: dgraph/dgraph:v21.03.2
volumes:
- zero-data:/dgraph
ports:
- "5080"
- "6080"
restart: on-failure
command: dgraph zero --my=zero:5080
alpha:
image: dgraph/dgraph:v21.03.2
depends_on:
- zero
volumes:
- alpha-data:/dgraph
ports:
- "8080"
- "9080"
restart: on-failure
command: dgraph alpha --my=alpha:7080 --zero=zero:5080 --security "whitelist=0.0.0.0/0"
ratel:
image: dgraph/ratel:v21.03.0
ports:
- "8000"
depends_on:
- alpha
volumes:
zero-data:
alpha-data: