From 68afcd183faafb028b42c6727ede7bad28d7f23d Mon Sep 17 00:00:00 2001 From: alexcos20 Date: Tue, 10 Dec 2019 15:47:02 +0200 Subject: [PATCH] add agent --- compose-files/agent.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 compose-files/agent.yml diff --git a/compose-files/agent.yml b/compose-files/agent.yml new file mode 100644 index 0000000..6275c42 --- /dev/null +++ b/compose-files/agent.yml @@ -0,0 +1,22 @@ +version: '3' +services: + agent: + image: oceanagent:$AGENT_VERSION + networks: + backend: + ipv4_address: 172.15.0.26 + ports: + - 4040:4040 + environment: + LOCAL_CONTRACTS: ${KEEPER_DEPLOY_CONTRACTS} + aquariusUri: ${COMMONS_AQUARIUS_URI} + brizoAddress: ${PROVIDER_ADDRESS} + nodeUri: ${COMMONS_KEEPER_RPC_HOST} + brizoUri: ${COMMONS_BRIZO_URL} + secretstoreUri: ${COMMONS_SECRET_STORE_URL} + faucetUri: ${COMMONS_FAUCET_URL} + PRIVATE_KEY: ${AGENT_PRIVATE_KEY} + volumes: + - ${KEEPER_ARTIFACTS_FOLDER}:/usr/src/app/node_modules/@oceanprotocol/keeper-contracts/artifacts/:ro + +