git.delta.rocks / unique-network / refs/commits / 49b176513c41

difftreelog

source

docker-compose-tests-parachain.yml1.4 KiBsourcehistory
1version: "3.5"23services:4  node_validator1:5    image: nft_node_test6    container_name: validator1_test7    ports:8      - 9944:99449      - 9844:984410      - 9933:993311    build:12      context: ./13      dockerfile: Dockerfile-parachain14    volumes:15#      - ./chain-data:/chain-data16      - ./launch-config.json:/polkadot-launch/launch-config.json17      - ./runtime_types.json:/polkadot-launch/runtime_types.json18    networks:19      - node_test_network20    #command: bash -c "yarn --cwd polkadot-launch start"21    #command: bash -c 'while true; do sleep 60; df -h; done'2223  integration_tests:24    container_name: integration_test25    image: int_test26    build:27      context: ./28      dockerfile: Dockerfile-tests29    volumes:30      - ./tests/src/config_docker.ts:/nft_parachain/tests/src/config.ts31      - /home/polkadot/mochawesome-report:/nft_parachain/tests/mochawesome-report32    command: bash -c 'while true; do sleep 20; df -h; done'33    networks:34      - node_test_network35    depends_on:36      - node_validator13738#  unit_tests:39#    container_name: unit_test40#    image: nft_unit_test41#    build:42#      context: ./43#      dockerfile: Dockerfile-unit44#    container_name: unit_test45#    networks:46#      - node_test_network47   # command: bash -c 'while true; do sleep 20; df -h; done'48#    command: bash -c 'cargo test'4950networks:51  node_test_network:52    name: node_test_network53    driver: bridge