diff --git a/dnscrypt/proxy/arm/Dockerfile b/dnscrypt/proxy/arm/Dockerfile index cb0e9cb..72ccbdb 100644 --- a/dnscrypt/proxy/arm/Dockerfile +++ b/dnscrypt/proxy/arm/Dockerfile @@ -19,7 +19,7 @@ RUN set -xe \ curl \ && mkdir libsodium \ && cd libsodium \ - && curl -sSL https://download.libsodium.org/libsodium/releases/libsodium-$LIBSODIUM_VERSION.tar.gz | tar xz --strip 1 \ + && curl -sSL https://github.com/vimagick/dockerfiles/raw/master/dnscrypt/proxy/arm/libsodium-$LIBSODIUM_VERSION.tar.gz | tar xz --strip 1 \ && ./configure --prefix=/usr --enable-minimal \ && make install \ && ldconfig \ @@ -27,7 +27,7 @@ RUN set -xe \ && rm -rf libsodium \ && mkdir dnscrypt-proxy \ && cd dnscrypt-proxy \ - && curl -sSL https://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-$DNSCRYPT_VERSION.tar.gz | tar xz --strip 1 \ + && curl -sSL https://github.com/vimagick/dockerfiles/raw/master/dnscrypt/proxy/arm/dnscrypt-proxy-$DNSCRYPT_VERSION.tar.gz | tar xz --strip 1 \ && ./configure --prefix=/usr --with-plugins \ && make install \ && cd .. \ diff --git a/dnscrypt/proxy/arm/dnscrypt-proxy-1.6.1.tar.gz b/dnscrypt/proxy/arm/dnscrypt-proxy-1.6.1.tar.gz new file mode 100644 index 0000000..323984b Binary files /dev/null and b/dnscrypt/proxy/arm/dnscrypt-proxy-1.6.1.tar.gz differ diff --git a/dnscrypt/proxy/arm/docker-compose.yml b/dnscrypt/proxy/arm/docker-compose.yml new file mode 100644 index 0000000..163b79f --- /dev/null +++ b/dnscrypt/proxy/arm/docker-compose.yml @@ -0,0 +1,7 @@ +dnscrypt-proxy: + image: easypi/dnscrypt-proxy-arm + container_name: dnscrypt-proxy + ports: + - "2053:53/tcp" + - "2053:53/udp" + restart: always diff --git a/dnscrypt/proxy/arm/libsodium-1.0.10.tar.gz b/dnscrypt/proxy/arm/libsodium-1.0.10.tar.gz new file mode 100644 index 0000000..7326e42 Binary files /dev/null and b/dnscrypt/proxy/arm/libsodium-1.0.10.tar.gz differ