git.delta.rocks / unique-network / refs/commits / 91697b986b21

difftreelog

delete mistake

Konstantin Astakhov2022-08-15parent: #2e30414.patch.diff
in: master

1 file changed

modified.docker/forking/docker-compose-fork.yamldiffbeforeafterboth
before · .docker/forking/docker-compose-fork.yaml
1version: "3.5"23services:4  parachain-fork:5    build:6      context: ../7      dockerfile: .docker/forking/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"
after · .docker/forking/docker-compose-fork.yaml
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"