1version: "3.5"23services:4 blockchain_nodes:5 image: blockchain_nodes6 container_name: blockchain_nodes7 ports:8 - 9944:99449 - 9844:984410 - 9933:993411 build:12 context: ./13 dockerfile: Dockerfile-parachain14 args:15 - RUST_TOOLCHAIN=${RUST_TOOLCHAIN:?err}16 - RUST_C=${RUST_C:?err}17 - POLKA_VERSION=${POLKA_VERSION:?err}18 - NFT_BRANCH=${NFT_BRANCH:?err}19 volumes:2021 - ./launch-config.json:/polkadot-launch/launch-config.json22 - ./runtime_types.json:/polkadot-launch/runtime_types.json23 env_file:24 - ./.env25 networks:26 - node_test_network27 28 2930 integration_tests:31 container_name: integration_tests32 image: integration_tests33 build:34 context: tests/35 dockerfile: Dockerfile-tests36 environment:37 RPC_URL: http://blockchain_nodes:9934/38 volumes:39 - ./tests/src/config_docker.ts:/nft_parachain/src/config.ts40 - /home/ubuntu/mochawesome-report:/nft_parachain/mochawesome-report41 - ./runtime_types.json:/runtime_types.json4243 networks:44 - node_test_network45 depends_on:46 - blockchain_nodes4748495051525354555657 585960networks:61 node_test_network:62 name: node_test_network63 driver: bridge