0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-03-16 19:35:08 +01:00

feat(entrypoint): add debug mode for entrypoint

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2024-10-10 11:08:36 -04:00 committed by GitHub
parent 6c1075b88d
commit 0be52642ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,9 @@
#!/bin/sh
set -eu
if [ -n "${IMAGE_DEBUG+x}" ]; then
echo "**Image debugging enabled**"
set -x
fi
# version_greater A B returns whether A > B
version_greater() {