diff --git a/docker-compose.provernet.yml b/docker-compose.provernet.yml index 693b2d1e6787..b08eb80357b5 100644 --- a/docker-compose.provernet.yml +++ b/docker-compose.provernet.yml @@ -37,7 +37,7 @@ services: volumes: - ./log/aztec-node/:/usr/src/yarn-project/aztec/log:rw healthcheck: - test: [ "CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status" ] + test: ["CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status"] interval: 3s timeout: 30s start_period: 120s @@ -48,10 +48,6 @@ services: - "--node" - "--archiver" - "--sequencer" - deploy: - resources: - limits: - memory: 800M # Prover node that listens for unproven blocks on L1, and generates and submits block proofs # Requires one or more agents to be connected for actually generating proofs @@ -80,11 +76,11 @@ services: aztec-node: condition: service_healthy healthcheck: - test: [ "CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status" ] + test: ["CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status"] interval: 3s timeout: 30s start_period: 10s - command: [ "start", "--prover-node", "--archiver" ] + command: ["start", "--prover-node", "--archiver"] restart: on-failure:5 # Prover agent that connects to the prover-node for fetching proving jobs and executing them @@ -110,10 +106,10 @@ services: depends_on: aztec-prover: condition: service_healthy - command: [ "start", "--prover" ] + command: ["start", "--prover"] restart: on-failure:5 healthcheck: - test: [ "CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status" ] + test: ["CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status"] interval: 3s timeout: 30s start_period: 20s @@ -147,12 +143,12 @@ services: aztec-node: condition: service_healthy healthcheck: - test: [ "CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status" ] + test: ["CMD", "curl", "-fSs", "http://127.0.0.1:$AZTEC_PORT/status"] interval: 3s timeout: 30s start_period: 10s restart: on-failure:5 - command: [ "start", "--bot", "--pxe" ] + command: ["start", "--bot", "--pxe"] # Simple watcher that logs the latest block numbers every few seconds using the CLI and the bot's PXE aztec-block-watcher: