From e4e8da281a70eb5708c9c267bb54c5348deb162e Mon Sep 17 00:00:00 2001 From: Maria Khrustaleva Date: Thu, 27 Oct 2022 08:25:50 +0200 Subject: [PATCH] Fix create manifest command (#5172) --- CHANGELOG.md | 1 + site/content/en/docs/manual/advanced/dataset_manifest.md | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48e6a66a..4902382a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -59,6 +59,7 @@ non-ascii paths while adding files from "Connected file share" (issue #4428) - Skeleton points exported out of order in the COCO Keypoints format () - Changing an object causes current z layer to be set to the maximum () +- Create manifest with cvat/server docker container command () ### Security - TDB diff --git a/site/content/en/docs/manual/advanced/dataset_manifest.md b/site/content/en/docs/manual/advanced/dataset_manifest.md index 61be7344..60d8b5d1 100644 --- a/site/content/en/docs/manual/advanced/dataset_manifest.md +++ b/site/content/en/docs/manual/advanced/dataset_manifest.md @@ -60,8 +60,7 @@ optional arguments: ### Alternative way to use with cvat/server ```bash -docker run -it --entrypoint python3 -v /path/to/host/data/:/path/inside/container/:rw cvat/server -utils/dataset_manifest/create.py --output-dir /path/to/manifest/directory/ /path/to/data/ +docker run -it -u root --entrypoint bash -v /path/to/host/data/:/path/inside/container/:rw cvat/server -c "pip3 install -r utils/dataset_manifest/requirements.txt && python3 utils/dataset_manifest/create.py --output-dir /path/to/manifest/directory/ /path/to/data/" ``` ### Examples of using