https://github.com/opencv/cvat
Raw File
Tip revision: be3240e85d65b911d9507cb1156b0ceab0a77a89 authored by Nikita Manovich on 02 August 2021, 12:20:22 UTC
Changed version of CVAT to 1.5.0
Tip revision: be3240e
docker-compose.dev.yml
#
# Copyright (C) 2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
version: '3.3'

services:
  cvat:
    build:
      context: .
      args:
        http_proxy:
        https_proxy:
        socks_proxy:
        CLAM_AV:
        INSTALL_SOURCES:

  cvat_ui:
    build:
      context: .
      args:
        http_proxy:
        https_proxy:
        no_proxy:
        socks_proxy:
      dockerfile: Dockerfile.ui
back to top