diff --git a/Dockerfile.hub b/Dockerfile.hub index 1d88afce9..f44ab186f 100644 --- a/Dockerfile.hub +++ b/Dockerfile.hub @@ -1,7 +1,7 @@ FROM debian:10-slim AS BUILDER ENV TMP_NAME=/tmp/dns-proxy-server.tgz RUN apt-get update && apt-get install -y curl &&\ - curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.17.2/dns-proxy-server-linux-amd64-2.17.2.tgz > $TMP_NAME && \ + curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.17.3/dns-proxy-server-linux-amd64-2.17.3.tgz > $TMP_NAME && \ mkdir /app && tar -xvf $TMP_NAME -C /app FROM debian:10-slim diff --git a/docker-compose.yml b/docker-compose.yml index bd6dc4d41..6b4c19c96 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.17.2 + image: defreitas/dns-proxy-server:2.17.3 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.17.2 + image: defreitas/dns-proxy-server:2.17.3 prod-build-image-dps-arm7x86: build: context: . dockerfile: Dockerfile.arm7x86 - image: defreitas/dns-proxy-server:2.17.2-arm7x86 + image: defreitas/dns-proxy-server:2.17.3-arm7x86 prod-build-image-dps-arm8x64: build: context: . dockerfile: Dockerfile.arm8x64 - image: defreitas/dns-proxy-server:2.17.2-arm8x64 + image: defreitas/dns-proxy-server:2.17.3-arm8x64 # build the project and make the github release prod-ci-deploy: