diff --git a/latest-versions.sh b/latest-versions.sh index f032cf5..8c417b8 100755 --- a/latest-versions.sh +++ b/latest-versions.sh @@ -49,8 +49,6 @@ get_latest() { dir="zookeeper/3.5" elif [[ "$dir" == "oauth2_proxy" ]]; then dir="oauth2-proxy" - elif [[ "$dir" == "wireguard-linux-compat" ]]; then - dir="wireguard/install" fi # Change to upper case for grep @@ -62,7 +60,10 @@ get_latest() { if [[ "$dir" == "wireguard-tools" ]]; then dir="wireguard/install" - udir="WIREGUARD_TOOLS_VERSION" + udir="WIREGUARD_TOOLS" + elif [[ "$dir" == "wireguard-linux-compat" ]]; then + dir="wireguard/install" + udir="WIREGUARD" fi local current diff --git a/wireguard/install/Dockerfile b/wireguard/install/Dockerfile index c2099f9..1775da7 100644 --- a/wireguard/install/Dockerfile +++ b/wireguard/install/Dockerfile @@ -23,9 +23,9 @@ RUN apt update && apt -y install \ && rm -rf /var/lib/apt/lists/* # https://git.zx2c4.com/wireguard-linux-compat/ -ENV WIREGUARD_VERSION v0.0.20200128 +ENV WIREGUARD_VERSION v1.0.20200506 # https://git.zx2c4.com/wireguard-tools -ENV WIREGUARD_TOOLS_VERSION v1.0.20200121 +ENV WIREGUARD_TOOLS_VERSION v1.0.20200513 RUN set -x \ && git clone --depth 1 --branch "${WIREGUARD_VERSION}" https://git.zx2c4.com/wireguard-linux-compat.git /wireguard \