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 - 984429 ports:30 - 127.0.0.1:9944:994431 - 127.0.0.1:9945:994532 - 127.0.0.1:9844:984433 logging:34 options:35 max-size: "1m"36 max-file: "3"