Skip to content

Commit

Permalink
chore: Replace VERSION with IMAGE on provernet template
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Aug 13, 2024
1 parent e80e7d2 commit d5e48aa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker-compose.provernet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:

# Single Aztec node with a sequencer for building and publishing unproven blocks to L1
aztec-node:
image: "aztecprotocol/aztec:${VERSION:-master}"
image: "aztecprotocol/${IMAGE:-aztec:master}"
ports:
- "8080:80"
environment:
Expand Down Expand Up @@ -52,7 +52,7 @@ services:
# Bot for keeping a steady flow of txs into the network
# Requires bootstrapping to be completed successfully
aztec-bot:
image: "aztecprotocol/aztec:${VERSION:-master}"
image: "aztecprotocol/${IMAGE:-aztec:master}"
ports:
- "8082:80"
environment:
Expand Down Expand Up @@ -90,7 +90,7 @@ services:
# Requires one or more agents to be connected for actually generating proofs
# Fetches individual tx proofs from the aztec-node directly
aztec-prover:
image: "aztecprotocol/aztec:${VERSION:-master}"
image: "aztecprotocol/${IMAGE:-aztec:master}"
ports:
- "8083:80"
environment:
Expand Down Expand Up @@ -121,7 +121,7 @@ services:
# Prover agent that connects to the prover-node for fetching proving jobs and executing them
# Multiple instances can be run, or PROVER_AGENT_CONCURRENCY can be increased to run multiple workers in a single instance
aztec-prover-agent:
image: "aztecprotocol/aztec:${VERSION:-master}"
image: "aztecprotocol/${IMAGE:-aztec:master}"
ports:
- "8090:80"
environment:
Expand All @@ -147,7 +147,7 @@ services:

# Simple watcher that logs the latest block numbers every few seconds using the CLI and the bot's PXE
aztec-block-watcher:
image: "aztecprotocol/aztec:${VERSION:-master}"
image: "aztecprotocol/${IMAGE:-aztec:master}"
environment:
ETHEREUM_HOST: http://ethereum:8545
L1_CHAIN_ID: 31337
Expand Down

0 comments on commit d5e48aa

Please sign in to comment.