Skip to content

Commit

Permalink
Releasing 2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI User committed Mar 31, 2019
1 parent 966a02a commit f5a2e16
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.11.0/dns-proxy-server-linux-arm-2.11.0.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.12.0/dns-proxy-server-linux-arm-2.12.0.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.11.0/dns-proxy-server-linux-arm64-2.11.0.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.12.0/dns-proxy-server-linux-arm64-2.12.0.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.11.0/dns-proxy-server-linux-amd64-2.11.0.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.12.0/dns-proxy-server-linux-amd64-2.12.0.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 @@ -19,7 +19,7 @@ services:

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

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

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

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

0 comments on commit f5a2e16

Please sign in to comment.