You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Roman Donchenko 580ae49e5a
Migrate to Docker Compose V2 (#5524)
Also, migrate to the version less Compose file format.

Compose V1 is EOL:
<https://www.docker.com/blog/announcing-compose-v2-general-availability/>.
3 years ago
..
README.md Migrate to Docker Compose V2 (#5524) 3 years ago

README.md

Put your SSH keys and SSH config here and they will be installed to the CVAT container. Please do not use encrypted keys that require a passphrase - these keys will not be used.

If you have any problems with a git repository cloning inside the CVAT:

  • Make sure that SSH keys have been added to the CVAT container:
docker exec -it cvat_server bash -ic 'ls .ssh'
  • If you need a proxy for connecting to the Internet, specify the socks_proxy variable before build the container. For example:
socks_proxy=proxy-example.com:1080 docker compose build
  • Try to clone a repository via SSH directly in the container by the command:
docker exec -it cvat_server bash -ic 'cd /tmp -r && git clone <ssh_repository_url>'
  • Finally try to clone it on your local machine and if it's successful, contact with us via Gitter chat or Github issues.