File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ services:
1616 network_mode : bridge
1717 prod-docker-dns-prod-server : # run from a docker image
1818 container_name : dns-proxy-server
19- image : defreitas/dns-proxy-server:2.0.18
19+ image : defreitas/dns-proxy-server:2.0.19
2020 hostname : dns.mageddo
2121 volumes :
2222 - /opt/dns-proxy-server/conf:/app/conf
@@ -30,8 +30,8 @@ services:
3030 context : .
3131 dockerfile : Dockerfile
3232 container_name : docker-dns-server-docker-compiler
33- image : defreitas/dns-proxy-server:2.0.18
33+ image : defreitas/dns-proxy-server:2.0.19
3434 prod-build-dns-proxy-server : # build the binary
3535 extends : gocompiler-docker-dns-proxy
3636 container_name : docker-dns-server-compiler
37- 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 *"
37+ 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 *"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM debian:8
22WORKDIR /app
33ENV TMP_NAME=/tmp/dns-proxy-server.tgz
44RUN apt-get update && apt-get install -y curl
5- RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.0.18 /dns-proxy-server-2.0.18 .tgz > $TMP_NAME && \
5+ RUN curl -L https://github.com/mageddo/dns-proxy-server/releases/download/2.0.19 /dns-proxy-server-2.0.19 .tgz > $TMP_NAME && \
66 tar -xvf $TMP_NAME -C /app/ && rm -f $TMP_NAME
77
88VOLUME ["/var/run/docker.sock" , "/var/run/docker.sock" ]
You can’t perform that action at this time.
0 commit comments