[Enhancement] Add support for UMASK environment variable (#582)

* Add umask setting to docker start

* Testing adding umask env var

* Added umask to README
This commit is contained in:
Kieran
2025-01-21 14:22:04 -08:00
committed by GitHub
parent 3dd20141e0
commit 704d29dc7e
3 changed files with 9 additions and 4 deletions
+3
View File
@@ -6,6 +6,9 @@ if [ $? -ne 0 ]; then
exit 1
fi
echo "Setting umask to ${UMASK}"
umask ${UMASK}
/app/bin/migrate
cd -P -- "$(dirname -- "$0")"