Skip to content

Commit f80941a

Browse files
author
Travis CI User
committed
Releasing 2.17.0
1 parent 2a7623d commit f80941a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile.arm7x86.hub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM arm32v7/debian:10-slim
22
WORKDIR /app
33
ENV TMP_NAME=/tmp/dns-proxy-server.tgz
44
RUN apt-get update && apt-get install --force-yes -y curl
5-
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 && \
5+
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.17.0/dns-proxy-server-linux-arm-2.17.0.tgz > $TMP_NAME && \
66
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl
77

88
LABEL dps.container=true

Dockerfile.arm8x64.hub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM arm64v8/debian:10-slim
22
WORKDIR /app
33
ENV TMP_NAME=/tmp/dns-proxy-server.tgz
44
RUN apt-get update && apt-get install --force-yes -y curl
5-
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 && \
5+
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.17.0/dns-proxy-server-linux-arm64-2.17.0.tgz > $TMP_NAME && \
66
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl
77

88
LABEL dps.container=true

Dockerfile.hub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:10-slim
22
WORKDIR /app
33
ENV TMP_NAME=/tmp/dns-proxy-server.tgz
44
RUN apt-get update && apt-get install --force-yes -y curl
5-
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 && \
5+
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.17.0/dns-proxy-server-linux-amd64-2.17.0.tgz > $TMP_NAME && \
66
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl
77
LABEL dps.container=true
88
VOLUME ["/var/run/docker.sock", "/var/run/docker.sock"]

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242

4343
# Run from docker image
4444
prod-dps:
45-
image: defreitas/dns-proxy-server:2.16.0
45+
image: defreitas/dns-proxy-server:2.17.0
4646
hostname: dns.mageddo
4747
volumes:
4848
- /opt/dns-proxy-server/conf:/app/conf
@@ -60,19 +60,19 @@ services:
6060
build:
6161
context: .
6262
dockerfile: Dockerfile
63-
image: defreitas/dns-proxy-server:2.16.0
63+
image: defreitas/dns-proxy-server:2.17.0
6464

6565
prod-build-image-dps-arm7x86:
6666
build:
6767
context: .
6868
dockerfile: Dockerfile.arm7x86
69-
image: defreitas/dns-proxy-server:2.16.0-arm7x86
69+
image: defreitas/dns-proxy-server:2.17.0-arm7x86
7070

7171
prod-build-image-dps-arm8x64:
7272
build:
7373
context: .
7474
dockerfile: Dockerfile.arm8x64
75-
image: defreitas/dns-proxy-server:2.16.0-arm8x64
75+
image: defreitas/dns-proxy-server:2.17.0-arm8x64
7676

7777
# build the project and make the github release
7878
prod-ci-deploy:

0 commit comments

Comments
 (0)