1version: "3.5"23services:4 blockchain_nodes:5 build:6 context: ./7 dockerfile: Dockerfile-parachain8 args:9 - RUST_TOOLCHAIN=${RUST_TOOLCHAIN:?err}10 - RUST_C=${RUST_C:?err}11 - POLKA_VERSION=${POLKA_VERSION:?err}12 - NFT_BRANCH=${NFT_BRANCH:?err}13 volumes:14 - ./launch-config.json:/polkadot-launch/launch-config.json15 - ./runtime_types.json:/polkadot-launch/runtime_types.json16 env_file:17 - ./.env1819 integration_tests:20 build:21 context: tests/22 dockerfile: Dockerfile-tests23 environment:24 RPC_URL: http://blockchain_nodes:9934/25 volumes:26 - ./tests/src/config_docker.ts:/nft_parachain/src/config.ts27 - /home/ubuntu/mochawesome-report:/nft_parachain/mochawesome-report28 - ./runtime_types.json:/runtime_types.json29 depends_on:30 - blockchain_nodes