mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
change(docker): use ./data instead of ./cache
For the `git` service, ./data is always used to provide an optional overriding of ssh host keys. In aur-dev production containers, most services which use the data mount use an internal Docker `data` volume instead. Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
604901fe74
commit
d4d9f50b8f
10 changed files with 56 additions and 57 deletions
|
@ -32,10 +32,10 @@ pytest
|
|||
if [ $COVERAGE -eq 1 ]; then
|
||||
make -C test coverage
|
||||
|
||||
# /cache is mounted as a volume. Copy coverage into it.
|
||||
# /data is mounted as a volume. Copy coverage into it.
|
||||
# Users can then sanitize the coverage locally in their
|
||||
# aurweb root directory: ./util/fix-coverage ./cache/.coverage
|
||||
rm -f /cache/.coverage
|
||||
cp -v .coverage /cache/.coverage
|
||||
chmod 666 /cache/.coverage
|
||||
# aurweb root directory: ./util/fix-coverage ./data/.coverage
|
||||
rm -f /data/.coverage
|
||||
cp -v .coverage /data/.coverage
|
||||
chmod 666 /data/.coverage
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue