Skip to content

Instantly share code, notes, and snippets.

@critesjosh
Last active January 5, 2023 01:16
Show Gist options
  • Select an option

  • Save critesjosh/4e9575148043b6041a6f3e44aedb8780 to your computer and use it in GitHub Desktop.

Select an option

Save critesjosh/4e9575148043b6041a6f3e44aedb8780 to your computer and use it in GitHub Desktop.
A docker compose script to start the Aztec stack locally (no bridges), chain id 31337
version: '3'
services:
contracts:
platform: linux/amd64
image: aztecprotocol/contracts:latest
environment:
ETHEREUM_HOST: ${ETHEREUM_HOST:-}
PORT: 8547
command: ./scripts/start_e2e.sh
ports:
- '8545:8544'
falafel:
platform: linux/amd64
image: aztecprotocol/falafel:latest
environment:
ETHEREUM_HOST: ${ETHEREUM_HOST:-http://contracts:8544}
CONTRACTS_HOST: http://contracts:8547
NUM_INNER_ROLLUP_TXS: ${NUM_INNER_ROLLUP_TXS:-3}
NUM_OUTER_ROLLUP_PROOFS: ${NUM_OUTER_ROLLUP_PROOFS:-1}
PROVERLESS: 'true'
MAX_CIRCUIT_SIZE: 8192
PROOF_GENERATOR_MODE: local
NO_BUILD: 'true'
PORT: 8081
depends_on:
- contracts
command: start:e2e
ports:
- '8081:8081'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment