Revision e9d485a24cbe670f71a6079e7090cd51b33ab1c2 authored by Roman Donchenko on 03 October 2023, 06:44:27 UTC, committed by GitHub on 03 October 2023, 06:44:27 UTC
As far as I can see, the `only_key_frames` parameter to
`VideoManifestManager.link` is not, and has never been, used, and
therefore `KeyFramesVideoStreamReader` is unused as well.
1 parent 885d26b
Raw File
docker-compose.ci.yml
#
# Copyright (C) 2018-2022 Intel Corporation
#
# SPDX-License-Identifier: MIT
#

services:
  cvat_ci:
    image: cvat_ci
    network_mode: host
    build:
      context: .
      dockerfile: Dockerfile.ci
    depends_on:
      - cvat_server
    environment:
      CONTAINER_COVERAGE_DATA_DIR:
      GITHUB_ACTIONS:
      GITHUB_TOKEN:
      GITHUB_WORKSPACE:
      GITHUB_REF:
      GITHUB_HEAD_REF:
      GITHUB_RUN_ID:
    volumes:
      - ${HOST_COVERAGE_DATA_DIR}:${CONTAINER_COVERAGE_DATA_DIR}

  cvat_redis:
    ports:
      - 6379:6379

back to top