git.delta.rocks / unique-network / refs/commits / 0335e511ccbf

difftreelog

source

.docker/docker-compose.tmp-forkless-data.j21.2 KiBsourcehistory
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        - "MAINNET_TAG={{ MAINNET_TAG }}"14        - "MAINNET_BRANCH={{ MAINNET_BRANCH }}"15        - "REPLICA_FROM={{ REPLICA_FROM }}"16      context: ../17      dockerfile: .docker/Dockerfile-parachain-upgrade-data18    image: node-parachain19    container_name: node-parachain20    volumes:21       - type: bind22         source: ./launch-config-forkless-data.json23         target: /polkadot-launch/launch-config.json24         read_only: true25       - type: bind26         source: ./forkless-config/fork.jsonnet27         target: /polkadot-launch/fork.jsonnet28         read_only: true29       - type: bind30         source: ./forkless-config/typeNames.jsonnet31         target: /polkadot-launch/typeNames.jsonnet32         read_only: true33    expose:34      - 994435      - 993336    ports:37      - 127.0.0.1:9944:994438      - 127.0.0.1:9933:993339    logging:40      options:41        max-size: "1m"42        max-file: "3"