git.delta.rocks / unique-network / refs/commits / 889611c68f5a

difftreelog

source

docker-compose-tests-parachain.yml1.3 KiBsourcehistory
1version: "3.5"23services:4  node_validator1:5    image: nft_node_test6    container_name: validator1_test7    ports:8      - 9944:99449    build:10      context: ./11      dockerfile: Dockerfile-parachain12    volumes:13#      - ./chain-data:/chain-data14      - ./launch-config.json:/polkadot-launch/launch-config.json15      - ./runtime_types.json:/polkadot-launch/runtime_types.json16    networks:17      - node_test_network18    #command: bash -c "yarn --cwd polkadot-launch start"19    #command: bash -c 'while true; do sleep 60; df -h; done'2021  integration_tests:22    container_name: integration_test23    image: int_test24    build:25      context: ./26      dockerfile: Dockerfile-tests27    volumes:28      - ./tests/src/config_docker.ts:/nft_parachain/tests/src/config.ts29      - /home/polkadot/mochawesome-report:/nft_parachain/tests/mochawesome-report30  #  command: bash -c 'while true; do sleep 20; df -h; done'31    networks:32      - node_test_network33    depends_on:34      - node_validator13536#  unit_tests:37#    container_name: unit_test38#    image: nft_unit_test39#    build:40#      context: ./41#      dockerfile: Dockerfile-unit42#    container_name: unit_test43#    networks:44#      - node_test_network45   # command: bash -c 'while true; do sleep 20; df -h; done'46#    command: bash -c 'cargo test'4748networks:49  node_test_network:50    name: node_test_network51    driver: bridge