cosmos-multisig-ui/stack-orchestrator/compose/docker-compose-dgraph.yml
IshaVenikar 044facddce
All checks were successful
/ test (pull_request) Successful in 1m19s
/ build (pull_request) Successful in 2m2s
/ lint (pull_request) Successful in 1m17s
Create separate docker compose file for dgraph
2025-05-23 16:18:58 +05:30

36 lines
637 B
YAML

version: '3.8'
services:
zero:
image: dgraph/dgraph:latest
volumes:
- zero-data:/dgraph
ports:
- "5080:5080"
- "6080:6080"
restart: on-failure
command: dgraph zero --my=zero:5080
alpha:
image: dgraph/dgraph:latest
depends_on:
- zero
volumes:
- alpha-data:/dgraph
ports:
- "8080:8080"
- "9080:9080"
restart: on-failure
command: dgraph alpha --my=alpha:7080 --zero=zero:5080 --security "whitelist=0.0.0.0/0"
ratel:
image: dgraph/ratel:latest
ports:
- "8000:8000"
depends_on:
- alpha
volumes:
zero-data:
alpha-data: