git.delta.rocks / unique-network / refs/commits / c2ed35549db9

difftreelog

source

.docker/forking/docker-compose-fork.yaml651 Bsourcehistory
1version: "3.5"23services:4  parachain-fork:5    build:6      context: ./7      dockerfile: ./Dockerfile-parachain-live-fork8    image: parachain-fork9    container_name: parachain-fork10    volumes:11       - type: bind12         source: ./launch-config-fork.json13         target: /polkadot-launch/launch-config.json14         read_only: true15       - type: bind16         source: ./fork.jsonnet17         target: /polkadot-launch/fork.jsonnet18         read_only: true          19    expose:20      - 994421      - 993322    ports:23      - 127.0.0.1:9944:994424      - 127.0.0.1:9933:993325    logging:26      options:27        max-size: "1m"28        max-file: "3"