Skip to content

Instantly share code, notes, and snippets.

@sifnoc
Created July 30, 2022 10:01
Show Gist options
  • Save sifnoc/4bcc134a0f9f28ec827099a246bc5d48 to your computer and use it in GitHub Desktop.
Save sifnoc/4bcc134a0f9f28ec827099a246bc5d48 to your computer and use it in GitHub Desktop.
version: "3"
services:
testnet:
image: sifnoc/zkopru_testnet:main-b50e4c
ports:
- "5000:5000"
command: ganache-cli --db=/data -i 20200406 -p 5000 --deterministic -b 14 --host 0.0.0.0
coordinator:
image: sifnoc/zkopru_node:main-b50e4c
ports:
- "8888:8888"
- "1234:1234"
links:
- 'testnet:testnet'
depends_on:
- 'testnet'
volumes:
- '../packages:/proj/packages'
command: sh -c "sleep 5s && gotty -w --port 1234 node /proj/packages/cli/dist/apps/coordinator/cli.js --config /proj/packages/cli/coordinator.dev.json"
wallet:
image: sifnoc/zkopru_node:main-b50e4c
ports:
- "4321:4321"
links:
- 'testnet:testnet'
- 'coordinator:coordinator'
depends_on:
- 'testnet'
volumes:
- '../packages:/proj/packages'
command: sh -c "sleep 5s && gotty -w --port 4321 node /proj/packages/cli/dist/apps/wallet/cli.js --config /proj/packages/cli/wallet.dev.json"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment