use the share option in CVAT per davidblom cvat-ai/cvat#203
update CVAT docker-compose.yml to follow the below, where /home/david/shared_data
is the local share.
version: "2.3"
services:
cvat:
volumes:
- cvat_share:/home/django/share:ro
- cvat_data:/home/django/data
environment:
CVAT_SHARE_URL: "Shared directory"
ports:
- "80:8080"
volumes:
cvat_data:
driver_opts:
type: none
device: /home/david/data
o: bind
cvat_share:
driver_opts:
type: none
device: /home/david/shared_data
o: bind
@pangyuteng Hi, I want to know how you created
/home/david/shared_data
directory. I am trying to createmnt/share
directory. I don't know how to use docker. please help.