Skip to content

Commit

Permalink
Updated documentation: need to mount shared volume to cvat_worker_chunks
Browse files Browse the repository at this point in the history
  • Loading branch information
bsekachev committed Dec 10, 2024
1 parent 17016de commit a2eabba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion site/content/en/docs/administration/basics/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ export CVAT_HOST=<YOUR_DOMAIN>
### Share path

You can use shared storage for uploading data when you create a task.
To do that, you must mount the shared storage to the CVAT docker container. Example of
To do that, you need to mount the shared storage to the CVAT docker container. Example of
docker-compose.override.yml for this purpose:

```yml
Expand All @@ -477,6 +477,9 @@ services:
cvat_worker_annotation:
volumes:
- cvat_share:/home/django/share:ro
cvat_worker_chunks:
volumes:
- cvat_share:/home/django/share:ro

volumes:
cvat_share:
Expand Down
3 changes: 3 additions & 0 deletions site/content/en/docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ services:
cvat_worker_annotation:
volumes:
- cvat_share:/home/django/share:ro
cvat_worker_chunks:
volumes:
- cvat_share:/home/django/share:ro

volumes:
cvat_share:
Expand Down

0 comments on commit a2eabba

Please sign in to comment.