cosmos-multisig-ui/stack-orchestrator/compose/docker-compose-dgraph.yml
ishavenikar e04663b5e9
Some checks failed
/ lint (push) Failing after 0s
/ test (push) Failing after 0s
/ build (push) Failing after 0s
Create stack for running multisig app and dgraph instance (#1)
Part of https://www.notion.so/Create-stacks-for-mainnet-1f2a6b22d4728034be4be2c51decf94e

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Reviewed-on: #1
Co-authored-by: ishavenikar <ishavenikar@noreply.git.vdb.to>
Co-committed-by: ishavenikar <ishavenikar@noreply.git.vdb.to>
2025-05-27 09:10:22 +00:00

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.2
ports:
- "8000"
depends_on:
- alpha
volumes:
zero-data:
alpha-data: