Skip to content

Commit

Permalink
[Gradle Release Plugin] - releasing '2.0.19'.
Browse files Browse the repository at this point in the history
  • Loading branch information
mageddo committed Jul 13, 2017
1 parent 89766dd commit 9b85515
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
network_mode: bridge
prod-docker-dns-prod-server: # run from a docker image
container_name: dns-proxy-server
image: defreitas/dns-proxy-server:2.0.18
image: defreitas/dns-proxy-server:2.0.19
hostname: dns.mageddo
volumes:
- /opt/dns-proxy-server/conf:/app/conf
Expand All @@ -30,8 +30,8 @@ services:
context: .
dockerfile: Dockerfile
container_name: docker-dns-server-docker-compiler
image: defreitas/dns-proxy-server:2.0.18
image: defreitas/dns-proxy-server:2.0.19
prod-build-dns-proxy-server: # build the binary
extends: gocompiler-docker-dns-proxy
container_name: docker-dns-server-compiler
command: bash -c "rm -rf build/ && mkdir -p build/ && git submodule init && git submodule update && cd src && go test -cover=false ./github.com/mageddo/dns-proxy-server/.../ && go build -v -o ../build/dns-proxy-server && cp -r ../static ../build/ && cp ../docker-compose.yml ../build/docker-compose.yml && cp ../dns-proxy-service ../build/dns-proxy-service && cd ../build/ && tar -cvf dns-proxy-server-2.0.18.tgz *"
command: bash -c "rm -rf build/ && mkdir -p build/ && git submodule init && git submodule update && cd src && go test -cover=false ./github.com/mageddo/dns-proxy-server/.../ && go build -v -o ../build/dns-proxy-server && cp -r ../static ../build/ && cp ../docker-compose.yml ../build/docker-compose.yml && cp ../dns-proxy-service ../build/dns-proxy-service && cd ../build/ && tar -cvf dns-proxy-server-2.0.19.tgz *"
2 changes: 1 addition & 1 deletion hub.Dockerfile
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 -y curl
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.0.18/dns-proxy-server-2.0.18.tgz > $TMP_NAME && \
RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.0.19/dns-proxy-server-2.0.19.tgz > $TMP_NAME && \
tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME

VOLUME ["/var/run/docker.sock", "/var/run/docker.sock"]
Expand Down

0 comments on commit 9b85515

Please sign in to comment.