Browse Source

Remove bind mount in update-tag-details.sh

Tianon Gravi 10 years ago
parent
commit
526a3a613f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      update-tag-details.sh

+ 1 - 1
update-tag-details.sh

@@ -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