git.delta.rocks / unique-network / refs/commits / 19daf00a26e2

difftreelog

source

.docker/docker-compose-tests-parachain.yml874 Bsourcehistory
1version: "3.5"23services:4  blockchain_nodes:5    build:6      context: ../7      dockerfile: .docker/Dockerfile-parachain8      args:9        - RUST_TOOLCHAIN=${RUST_TOOLCHAIN:?err}10        - RUST_C=${RUST_C:?err}11        - POLKA_VERSION=${POLKA_VERSION:?err}12        - FEATURE=${FEATURE:?err}13    volumes:14      - ../launch-config.json:/polkadot-launch/launch-config.json15    env_file:16      - ./.env17    expose:18      - 994419      - 993320    ports:21      - 127.0.0.1:9944:994422      - 127.0.0.1:9933:99332324#  integration_tests:25#    build:26#      context: ../tests/27#      dockerfile: Dockerfile-tests28#    environment:29#      RPC_URL: http://blockchain_nodes:9933/30#    volumes:31#      - ./tests/src/config_docker.ts:/unique_parachain/src/config.ts32#      - /home/ubuntu/mochawesome-report:/unique_parachain/mochawesome-report33#    depends_on:34#      - blockchain_nodes