From c85cf7c19ca06dacacafcfdcfd7aab3bee46bed8 Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Tue, 28 Jan 2020 14:13:22 -0800 Subject: [PATCH] Do not chown data for test-image; chmod 777 instead Signed-off-by: James Ketrenos --- scripts/test-image.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/test-image.sh b/scripts/test-image.sh index acc1e2b..3bb10ec 100755 --- a/scripts/test-image.sh +++ b/scripts/test-image.sh @@ -35,8 +35,7 @@ ADD_GROUPS="--group-add ${VIDEO}" [[ -e data/ ]] && rm -rf data mkdir data || fail "Unable to make data volume directory" -chown :${VIDEO} data || fail "Unable to chown data volume to 'video' gid ${VIDEO}" -chmod g+rwX data || fail "Unable to chmod data volume to g+rwX" +chmod a+rwX data || fail "Unable to chmod data volume to a+rwX" CMD="docker run \ ${ADD_GROUPS} \