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 - "REPLICA_FROM={{ REPLICA_FROM }}"16 - "WASM_NAME={{ WASM_NAME }}"17 context: ../18 dockerfile: .docker/Dockerfile-parachain-upgrade-data19 image: node-parachain20 container_name: node-parachain21 volumes:22 - type: bind23 source: ./launch-config-forkless-data.json24 target: /polkadot-launch/launch-config.json25 read_only: true26 - type: bind27 source: ./forkless-config/fork.jsonnet28 target: /polkadot-launch/fork.jsonnet29 read_only: true30 - type: bind31 source: ./forkless-config/typeNames.jsonnet32 target: /polkadot-launch/typeNames.jsonnet33 read_only: true34 expose:35 - 994436 - 993337 ports:38 - 127.0.0.1:9944:994439 - 127.0.0.1:9933:993340 logging:41 options:42 max-size: "1m"43 max-file: "3"