From ae65d1559fc22f96c28eec2845b3c50979e6694b Mon Sep 17 00:00:00 2001 From: Marcel Heers Date: Mon, 3 Apr 2023 15:51:04 +0200 Subject: [PATCH] fixes 'unsupported version' error; resolves https://github.com/ehough/docker-nfs-server/issues/76 --- entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index d36af36..bbe36c8 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,8 +2,8 @@ # # ehough/docker-nfs-server: A lightweight, robust, flexible, and containerized NFS server. # -# https://github.com/obeone/docker-nfs-server -# https://github.com/obeone/docker-nfs-server/pkgs/container/docker-nfs-server +# https://github.com/mheers/docker-nfs-server +# https://github.com/mheers/docker-nfs-server/pkgs/container/docker-nfs-server # # Almost all the work is from @ehough, I just created workflow to keep the # docker image up-to-date and build for multiple architectures @@ -534,7 +534,7 @@ boot_helper_mount() { boot_helper_get_version_flags() { local -r requested_version="${state[$STATE_NFS_VERSION]}" - local flags=('--nfs-version' "$requested_version" '--no-nfs-version' 2) + local flags=('--nfs-version' "$requested_version") if ! is_nfs3_enabled; then flags+=('--no-nfs-version' 3)