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 - "FEATURE={{ FEATURE }}"11 - "RUNTIME={{ RUNTIME }}"12 - "POLKADOT_BUILD_BRANCH={{ POLKADOT_BUILD_BRANCH }}"13 - "FORK_FROM={{ FORK_FROM }}"14 context: ../15 dockerfile: .docker/Dockerfile-parachain-upgrade-data16 image: node-parachain17 container_name: node-parachain18 volumes:19 - type: bind20 source: ./launch-config-forkless-data.json21 target: /polkadot-launch/launch-config.json22 read_only: true23 - type: bind24 source: ./forkless-config/fork.jsonnet25 target: /polkadot-launch/fork.jsonnet26 read_only: true 27 expose:28 - 994429 - 993330 ports:31 - 127.0.0.1:9944:994432 - 127.0.0.1:9933:993333 logging:34 options:35 max-size: "1m"36 max-file: "3"