Skip to content

Commit

Permalink
Fix docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailUshakoff committed Jul 2, 2024
1 parent 3bd142d commit d5bf951
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ services:
depends_on:
rollup0-anvil:
condition: service_healthy
indexer-setup:
condition: service_completed_successfully
expose:
- 9091
volumes:
Expand Down Expand Up @@ -125,8 +123,6 @@ services:
depends_on:
rollup1-anvil:
condition: service_healthy
indexer-setup:
condition: service_completed_successfully
expose:
- 9091
volumes:
Expand Down Expand Up @@ -170,34 +166,6 @@ services:
networks:
- near-sffl

indexer-setup:
image: node:16
container_name: near-sffl-indexer-setup
depends_on:
indexer:
condition: service_healthy
volumes:
- ./:/near-sffl/
- near_cli_data:/near-cli
- near_cli_keys:/root/.near-credentials
entrypoint: sh
command:
- -c
- |
npm i -g [email protected]
near create-account da2.test.near --masterAccount test.near
near deploy da2.test.near /near-sffl/tests/near/near_da_blob_store.wasm --initFunction new --initArgs {} --masterAccount test.near -f
near create-account da3.test.near --masterAccount test.near
near deploy da3.test.near /near-sffl/tests/near/near_da_blob_store.wasm --initFunction new --initArgs {} --masterAccount test.near -f
environment:
- NEAR_ENV=localnet
- NEAR_CLI_LOCALNET_NETWORK_ID=localnet
- NEAR_HELPER_ACCOUNT=near
- NEAR_CLI_LOCALNET_KEY_PATH=/near-cli/validator_key.json
- NEAR_NODE_URL=http://near-sffl-indexer:3030
networks:
- near-sffl

aggregator:
image: near-sffl-aggregator
container_name: near-sffl-aggregator
Expand Down

0 comments on commit d5bf951

Please sign in to comment.