diff --git a/entrypoint.sh b/entrypoint.sh index dfaa92c..52a1f57 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,6 +2,7 @@ if [ "${ROOT_PASSWORD}" == "root" ] || [ -z "${ROOT_PASSWORD}" ]; then export ROOT_PASSWORD="$(hexdump -e '"%02x"' -n 16 /dev/urandom)" + echo "Successfully generated a random password for root" fi echo "root:${ROOT_PASSWORD}" | chpasswd