-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nuclio as a plugin in CVAT, improved system to check installed plugins (
#2192) * allow to run cvat without nuclio * fix new line * fix comments * Updated core version * refactoring * minor refactoring, fixed eslint issues, added documentation to cvat-core, updated ui version, updated changelog * move plugins to serverViewSet Co-authored-by: Boris Sekachev <[email protected]>
- Loading branch information
1 parent
6370f98
commit f2c84a2
Showing
22 changed files
with
225 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Serverless for Computer Vision Annotation Tool (CVAT) | ||
|
||
### Run docker container | ||
```bash | ||
# From project root directory | ||
docker-compose -f docker-compose.yml -f components/serverless/docker-compose.serverless.yml up -d | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
version: '2.3' | ||
services: | ||
serverless: | ||
container_name: nuclio | ||
image: quay.io/nuclio/dashboard:1.4.8-amd64 | ||
restart: always | ||
networks: | ||
default: | ||
aliases: | ||
- nuclio | ||
volumes: | ||
- /tmp:/tmp | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
environment: | ||
http_proxy: | ||
https_proxy: | ||
no_proxy: 172.28.0.1,${no_proxy} | ||
NUCLIO_CHECK_FUNCTION_CONTAINERS_HEALTHINESS: "true" | ||
ports: | ||
- "8070:8070" | ||
|
||
cvat: | ||
environment: | ||
CVAT_SERVERLESS: 1 | ||
no_proxy: kibana,logstash,nuclio,${no_proxy} | ||
|
||
volumes: | ||
cvat_events: |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.