1version: "3.5"23services:4 node_validator1:5 image: nft_node_test6 container_name: validator1_test7 ports:8 - 9944:99449 - 9844:984410 - 9933:993311 build:12 context: ./13 dockerfile: Dockerfile-parachain14 volumes:1516 - ./launch-config.json:/polkadot-launch/launch-config.json17 - ./runtime_types.json:/polkadot-launch/runtime_types.json18 environment:19 - WASM_TOOLCHAIN=${WASM_TOOLCHAIN}20 - POLKA_VERSION=${POLKA_VERSION}21 - NFT_BRANCH=${NFT_BRANCH}22 env_file:23 - ./.env-parachain24 networks:25 - node_test_network26 27 2829 integration_tests:30 container_name: integration_test3132333435 image: int_test36 build:37 context: ./38 dockerfile: Dockerfile-tests39 volumes:40 - ./tests/src/config_docker.ts:/nft_parachain/tests/src/config.ts41 - ./mochawesome-report:/nft_parachain/tests/mochawesome-report4243 networks:44 - node_test_network45 depends_on:46 - node_validator14748495051525354555657 585960networks:61 node_test_network:62 name: node_test_network63 driver: bridge