aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker-entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh
index 8055f9c..3c6dc08 100644
--- a/docker-entrypoint.sh
+++ b/docker-entrypoint.sh
@@ -5,7 +5,7 @@ echo "You are running with user `id -u`:`id -g`"
if [ `id -u` -eq 0 ] && [ `id -g` -eq 0 ]; then
echo "Running in New Mode"
if [ "${UID}" -eq 0 ]; then
- echo "Waring, it is not recommended to run as root user, please check if you have set the UID environment variable"
+ echo "Warning, it is not recommended to run as root user, please check if you have set the UID environment variable"
fi
echo "Setting umask to ${UMASK}"
umask ${UMASK}
bgstack15