diff --git a/Dockerfile.arm7x86.hub b/Dockerfile.arm7x86.hub index 67c95d3f8..dad61b21e 100644 --- a/Dockerfile.arm7x86.hub +++ b/Dockerfile.arm7x86.hub @@ -2,7 +2,7 @@ FROM arm32v7/debian:10-slim WORKDIR /app ENV TMP_NAME=/tmp/dns-proxy-server.tgz RUN apt-get update && apt-get install --force-yes -y curl -RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.15.0/dns-proxy-server-linux-arm-2.15.0.tgz > $TMP_NAME && \ +RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.16.0/dns-proxy-server-linux-arm-2.16.0.tgz > $TMP_NAME && \ tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl LABEL dps.container=true diff --git a/Dockerfile.arm8x64.hub b/Dockerfile.arm8x64.hub index 5f9172e22..066690490 100644 --- a/Dockerfile.arm8x64.hub +++ b/Dockerfile.arm8x64.hub @@ -2,7 +2,7 @@ FROM arm64v8/debian:10-slim WORKDIR /app ENV TMP_NAME=/tmp/dns-proxy-server.tgz RUN apt-get update && apt-get install --force-yes -y curl -RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.15.0/dns-proxy-server-linux-arm64-2.15.0.tgz > $TMP_NAME && \ +RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.16.0/dns-proxy-server-linux-arm64-2.16.0.tgz > $TMP_NAME && \ tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl LABEL dps.container=true diff --git a/Dockerfile.hub b/Dockerfile.hub index 2f0a494a1..572d8efad 100644 --- a/Dockerfile.hub +++ b/Dockerfile.hub @@ -2,7 +2,7 @@ FROM debian:10-slim WORKDIR /app ENV TMP_NAME=/tmp/dns-proxy-server.tgz RUN apt-get update && apt-get install --force-yes -y curl -RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.15.0/dns-proxy-server-linux-amd64-2.15.0.tgz > $TMP_NAME && \ +RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.16.0/dns-proxy-server-linux-amd64-2.16.0.tgz > $TMP_NAME && \ tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl LABEL dps.container=true VOLUME ["/var/run/docker.sock", "/var/run/docker.sock"] diff --git a/docker-compose.yml b/docker-compose.yml index 9fb8db56e..271e42dbd 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -42,7 +42,7 @@ services: # Run from docker image prod-dps: - image: defreitas/dns-proxy-server:2.15.0 + image: defreitas/dns-proxy-server:2.16.0 hostname: dns.mageddo volumes: - /opt/dns-proxy-server/conf:/app/conf @@ -60,19 +60,19 @@ services: build: context: . dockerfile: Dockerfile - image: defreitas/dns-proxy-server:2.15.0 + image: defreitas/dns-proxy-server:2.16.0 prod-build-image-dps-arm7x86: build: context: . dockerfile: Dockerfile.arm7x86 - image: defreitas/dns-proxy-server:2.15.0-arm7x86 + image: defreitas/dns-proxy-server:2.16.0-arm7x86 prod-build-image-dps-arm8x64: build: context: . dockerfile: Dockerfile.arm8x64 - image: defreitas/dns-proxy-server:2.15.0-arm8x64 + image: defreitas/dns-proxy-server:2.16.0-arm8x64 # build the project and make the github release prod-ci-deploy: