Skip to content

Commit

Permalink
Releasing 2.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI User committed May 5, 2019
1 parent 0c2507b commit a471a94
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.arm7x86.hub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM arm32v7/debian:7
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.14.1/dns-proxy-server-linux-arm-2.14.1.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.14.2/dns-proxy-server-linux-arm-2.14.2.tgz > $TMP_NAME && \
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl

VOLUME ["/var/run/docker.sock", "/var/run/docker.sock"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.arm8x64.hub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM arm64v8/debian:9
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.14.1/dns-proxy-server-linux-arm64-2.14.1.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.14.2/dns-proxy-server-linux-arm64-2.14.2.tgz > $TMP_NAME && \
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl

VOLUME ["/var/run/docker.sock", "/var/run/docker.sock"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.hub
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:8
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.14.1/dns-proxy-server-linux-amd64-2.14.1.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.14.2/dns-proxy-server-linux-amd64-2.14.2.tgz > $TMP_NAME && \
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME && apt-get purge --force-yes -y curl

VOLUME ["/var/run/docker.sock", "/var/run/docker.sock"]
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ services:

# Run from docker image
prod-dps:
image: defreitas/dns-proxy-server:2.14.1
image: defreitas/dns-proxy-server:2.14.2
hostname: dns.mageddo
volumes:
- /opt/dns-proxy-server/conf:/app/conf
Expand All @@ -60,19 +60,19 @@ services:
build:
context: .
dockerfile: Dockerfile
image: defreitas/dns-proxy-server:2.14.1
image: defreitas/dns-proxy-server:2.14.2

prod-build-image-dps-arm7x86:
build:
context: .
dockerfile: Dockerfile.arm7x86
image: defreitas/dns-proxy-server:2.14.1-arm7x86
image: defreitas/dns-proxy-server:2.14.2-arm7x86

prod-build-image-dps-arm8x64:
build:
context: .
dockerfile: Dockerfile.arm8x64
image: defreitas/dns-proxy-server:2.14.1-arm8x64
image: defreitas/dns-proxy-server:2.14.2-arm8x64

# build the project and make the github release
prod-ci-deploy:
Expand Down

0 comments on commit a471a94

Please sign in to comment.