1version: "3.5"23services:4 node-parachain:5 build:6 args:7 - "RUST_TOOLCHAIN={{ RUST_TOOLCHAIN }}"8 - "BRANCH={{ BRANCH }}"9 - "REPO_URL={{ REPO_URL }}"10 - "NETWORK={{ NETWORK }}"11 - "POLKADOT_BUILD_BRANCH={{ POLKADOT_BUILD_BRANCH }}"12 - "POLKADOT_LAUNCH_BRANCH={{ POLKADOT_LAUNCH_BRANCH }}" 13 - "MAINNET_TAG={{ MAINNET_TAG }}"14 - "MAINNET_BRANCH={{ MAINNET_BRANCH }}"15 - "WASM_NAME={{ WASM_NAME }}"16 context: ../17 dockerfile: .docker/Dockerfile-parachain-node-only18 image: node-parachain19 container_name: node-parachain20 volumes:21 - type: bind22 source: ./launch-config-forkless-nodata.json23 target: /polkadot-launch/launch-config.json24 read_only: true25 expose:26 - 994427 - 994528 - 993329 - 984430 ports:31 - 127.0.0.1:9944:994432 - 127.0.0.1:9945:994533 - 127.0.0.1:9933:993334 - 127.0.0.1:9844:984435 logging:36 options:37 max-size: "1m"38 max-file: "3"