Remove bind mount in update-tag-details.sh

This commit is contained in:
Tianon Gravi 2015-12-11 12:43:09 -08:00
parent 0602bb88e3
commit 526a3a613f
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ for repo in "${repos[@]}"; do
href="#${href,,}"
echo $'-\t[`'"$tag"'`]('"$href"')'
done
docker run -i --rm -v "$PWD":/wtf:ro -w /wtf --entrypoint "$script" docker-library-docs "${tags[@]}"
docker run -i --rm --entrypoint "$script" docker-library-docs "${tags[@]}"
} > "$repo/tag-details.md"
echo 'done'
done