Revision c96e353f76a06eb230b282947e9161446ee14a04 authored by dependabot[bot] on 25 March 2022, 05:36:56 UTC, committed by GitHub on 25 March 2022, 05:36:56 UTC
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0fc15d7
Raw File
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:

```bash
docker exec -it cvat 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:

```bash
socks_proxy=proxy-example.com:1080 docker-compose build
```

- Try to clone a repository via SSH directly in the container by the command:

```bash
docker exec -it cvat 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](https://gitter.im/opencv-cvat) or [Github issues](https://github.com/opencv/cvat/issues).
back to top