From 7e9902cc831b1ee007e3d78c4c50789afebd7318 Mon Sep 17 00:00:00 2001 From: Gabriel de Quadros Ligneul <8294320+gligneul@users.noreply.github.com> Date: Tue, 14 Nov 2023 15:12:59 -0300 Subject: [PATCH] fix: environment variables of claimer service --- docker-compose-validator.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/docker-compose-validator.yml b/docker-compose-validator.yml index 32a5ab7e..500c0d6c 100644 --- a/docker-compose-validator.yml +++ b/docker-compose-validator.yml @@ -12,24 +12,18 @@ services: condition: service_completed_successfully deployer: condition: service_completed_successfully - state_server: - condition: service_healthy redis: condition: service_healthy environment: RUST_LOG: info - DAPP_DEPLOYMENT_FILE: /deployments/localhost/dapp.json - ROLLUPS_DEPLOYMENT_FILE: /opt/cartesi/share/deployments/localhost.json - RD_EPOCH_DURATION: 86400 - SC_GRPC_ENDPOINT: http://state_server:50051 - SC_DEFAULT_CONFIRMATIONS: 1 TX_PROVIDER_HTTP_ENDPOINT: http://hardhat:8545 - TX_SIGNING_MNEMONIC: "test test test test test test test test test test test junk" - AUTH_MNEMONIC: "test test test test test test test test test test test junk" TX_CHAIN_ID: 31337 TX_CHAIN_IS_LEGACY: ${TX_LEGACY:-false} TX_DEFAULT_CONFIRMATIONS: 2 + TX_SIGNING_MNEMONIC: "test test test test test test test test test test test junk" REDIS_ENDPOINT: redis://redis:6379 + DAPP_DEPLOYMENT_FILE: /deployments/localhost/dapp.json + ROLLUPS_DEPLOYMENT_FILE: /opt/cartesi/share/deployments/localhost.json volumes: - blockchain-data:/opt/cartesi/share/deployments:ro - ./deployments:/deployments:ro