diff --git a/entrypoint.sh b/entrypoint.sh index d44bfdd..16bac3f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -12,9 +12,9 @@ if ! [[ "$INPUT_POSTGRESQL_VERSION" =~ ^[0-9]+$ ]]; then exit 1 fi -# Check if the input is between 11 and 16 (inclusive) -if (( INPUT_POSTGRESQL_VERSION < 11 || INPUT_POSTGRESQL_VERSION > 16 )); then - echo "Error: $INPUT_POSTGRESQL_VERSION is not between 11 and 16 (inclusive)." +# Check if the input is between 10 and 16 (inclusive) +if (( INPUT_POSTGRESQL_VERSION < 10 || INPUT_POSTGRESQL_VERSION > 16 )); then + echo "Error: $INPUT_POSTGRESQL_VERSION is not between 10 and 16 (inclusive)." exit 1 fi