Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
  • Loading branch information
jessfraz committed May 25, 2019
1 parent 79819d4 commit e3b1102
Show file tree
Hide file tree
Showing 23 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion certbot/Dockerfile
Expand Up @@ -27,7 +27,7 @@ RUN apk --no-cache add \

RUN pip install acme

ENV CERTBOT_VERSION 0.32.0
ENV CERTBOT_VERSION 0.34.2

RUN buildDeps=' \
git \
Expand Down
2 changes: 1 addition & 1 deletion cfssl/Dockerfile
Expand Up @@ -9,7 +9,7 @@ RUN apk --no-cache add \
libc-dev


ENV CFSSL_VERSION 1.3.2
ENV CFSSL_VERSION 1.3.3

RUN git clone --depth 1 --branch "$CFSSL_VERSION" https://github.com/cloudflare/cfssl.git /go/src/github.com/cloudflare/cfssl

Expand Down
5 changes: 3 additions & 2 deletions coredns/Dockerfile
Expand Up @@ -5,17 +5,18 @@ ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go

RUN apk --no-cache add \
bash \
ca-certificates \
git \
make

ENV COREDNS_VERSION v1.4.0
ENV COREDNS_VERSION v1.5.0

RUN git clone --depth 1 --branch ${COREDNS_VERSION} https://github.com/coredns/coredns /go/src/github.com/coredns/coredns

WORKDIR /go/src/github.com/coredns/coredns

RUN make CHECKS="godeps" \
RUN make all \
&& mv coredns /usr/bin/coredns

FROM alpine:latest
Expand Down
2 changes: 1 addition & 1 deletion curl/Dockerfile
Expand Up @@ -13,7 +13,7 @@ RUN apk add --no-cache \
nghttp2 \
openssl

ENV CURL_VERSION 7.64.0
ENV CURL_VERSION 7.65.0

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
Expand Down
2 changes: 1 addition & 1 deletion fleet/Dockerfile
Expand Up @@ -12,7 +12,7 @@ RUN apk add --no-cache \
npm \
yarn

ENV FLEET_VERSION 2.0.2
ENV FLEET_VERSION 2.1.1

RUN git clone --depth 1 --branch "${FLEET_VERSION}" https://github.com/kolide/fleet.git /go/src/github.com/kolide/fleet

Expand Down
2 changes: 1 addition & 1 deletion gcloud/Dockerfile
@@ -1,7 +1,7 @@
FROM python:2-alpine

ENV PATH $PATH:/usr/src/google-cloud-sdk/bin
ENV CLOUD_SDK_DOCKER_VERSION 237.0.0
ENV CLOUD_SDK_DOCKER_VERSION 247.0.0

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
Expand Down
4 changes: 3 additions & 1 deletion keepassxc/Dockerfile
Expand Up @@ -11,7 +11,7 @@
FROM alpine:latest
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"

ENV KEEPASSXC_VERSION 2.3.4
ENV KEEPASSXC_VERSION 2.4.1

RUN buildDeps=' \
automake \
Expand All @@ -25,8 +25,10 @@ RUN buildDeps=' \
git \
libgcrypt-dev \
libmicrohttpd-dev \
libqrencode-dev \
make \
qt5-qtbase-dev \
qt5-qtsvg-dev \
qt5-qttools-dev \
' \
set -x \
Expand Down
2 changes: 1 addition & 1 deletion latest-versions.sh
Expand Up @@ -146,7 +146,7 @@ hashicorp/terraform
kdlucas/byte-unixbench
mitchellh/vagrant
hashicorp/vault
v2tec/watchtower
containrrr/watchtower
wireguard/wireguard
znc/znc
apache/zookeeper
Expand Down
4 changes: 2 additions & 2 deletions nomad/Dockerfile
@@ -1,4 +1,4 @@
FROM golang:1.10 as builder
FROM golang:1.11 as builder
MAINTAINER Jessica Frazelle <jess@linux.com>

ENV PATH /go/bin:/usr/local/go/bin:$PATH
Expand Down Expand Up @@ -28,7 +28,7 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*

ENV NOMAD_VERSION v0.9.0-beta3
ENV NOMAD_VERSION v0.9.2-rc1

RUN go get github.com/hashicorp/nomad

Expand Down
2 changes: 1 addition & 1 deletion now/Dockerfile
Expand Up @@ -6,7 +6,7 @@ RUN apk add --no-cache \
curl \
gzip

ENV NOW_VERSION 14.0.3
ENV NOW_VERSION 15.3.0

RUN curl -sSL -o "/tmp/now.gz" "https://github.com/zeit/now-cli/releases/download/${NOW_VERSION}/now-alpine.gz" \
&& gzip -dv "/tmp/now.gz" \
Expand Down
2 changes: 1 addition & 1 deletion nzbget/Dockerfile
Expand Up @@ -12,7 +12,7 @@ RUN apk add --no-cache \
git \
--repository https://dl-4.alpinelinux.org/alpine/edge/testing

ENV NZBGET_VERSION 20.0
ENV NZBGET_VERSION 21.0
RUN wget "https://github.com/nzbget/nzbget/releases/download/v${NZBGET_VERSION}/nzbget-${NZBGET_VERSION}-bin-linux.run" -O /tmp/nzbget.run \
&& bash /tmp/nzbget.run --destdir /opt/nzbget \
&& git clone --depth=1 "https://github.com/clinton-hall/nzbToMedia.git" /opt/nzbget/scripts/nzbToMedia \
Expand Down
2 changes: 1 addition & 1 deletion oauth2-proxy/Dockerfile
Expand Up @@ -8,7 +8,7 @@ RUN apk --no-cache add \
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go

ENV OAUTH2_PROXY_VERSION v3.1.0
ENV OAUTH2_PROXY_VERSION v3.2.0

RUN go get github.com/golang/dep/cmd/dep

Expand Down
2 changes: 1 addition & 1 deletion packer/Dockerfile
Expand Up @@ -12,7 +12,7 @@ RUN apk add --no-cache \
make \
zip

ENV PACKER_VERSION v1.3.5
ENV PACKER_VERSION v1.4.1

RUN go get github.com/hashicorp/packer

Expand Down
2 changes: 1 addition & 1 deletion plexpy/Dockerfile
Expand Up @@ -15,7 +15,7 @@ RUN apk add --no-cache \
py-pip

# Get the source
ENV PLEXPY_VERSION v2.1.26
ENV PLEXPY_VERSION v2.1.29
RUN git clone https://github.com/Tautulli/Tautulli.git /opt/plexpy \
&& ( \
cd /opt/plexpy \
Expand Down
2 changes: 1 addition & 1 deletion powershell/Dockerfile
@@ -1,7 +1,7 @@
FROM debian:stretch-slim
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"

ENV POWERSHELL_VERSION 6.1.3
ENV POWERSHELL_VERSION 6.2.1

RUN apt-get update && apt-get install -y \
ca-certificates \
Expand Down
2 changes: 1 addition & 1 deletion radarr/Dockerfile
Expand Up @@ -14,7 +14,7 @@ RUN apk add --no-cache \
--repository https://dl-4.alpinelinux.org/alpine/edge/testing

# https://github.com/Radarr/Radarr/releases
ENV RADARR_VERSION 0.2.0.1293
ENV RADARR_VERSION 0.2.0.1344
RUN mkdir -p /opt/radarr \
&& wget "https://github.com/Radarr/Radarr/releases/download/v${RADARR_VERSION}/Radarr.develop.${RADARR_VERSION}.linux.tar.gz" -O /tmp/radarr.tar.gz \
&& tar -xzvf /tmp/radarr.tar.gz -C /opt/radarr --strip-components 1 \
Expand Down
4 changes: 2 additions & 2 deletions telize/Dockerfile
Expand Up @@ -4,11 +4,11 @@ RUN apk add --no-cache \
lua5.1-cjson \
luajit

ENV NGINX_VERSION 1.15.9
ENV NGINX_VERSION 1.17.0
# https://github.com/simplresty/ngx_devel_kit/releases
ENV NGX_DEVEL_KIT_VERSION v0.3.1rc1
# https://github.com/openresty/lua-nginx-module/releases
ENV LUA_NGINX_MODULE_VERSION v0.10.14rc3
ENV LUA_NGINX_MODULE_VERSION v0.10.15
# https://github.com/leev/ngx_http_geoip2_module/releases
ENV NGX_HTTP_GEOIP2_MODULE_VERSION 3.2
# https://github.com/maxmind/libmaxminddb/releases
Expand Down
2 changes: 1 addition & 1 deletion terraform/Dockerfile
Expand Up @@ -11,7 +11,7 @@ RUN apk add --no-cache \
make \
zip

ENV TERRAFORM_VERSION v0.11.11
ENV TERRAFORM_VERSION v0.12.0

RUN go get github.com/hashicorp/terraform || true

Expand Down
2 changes: 1 addition & 1 deletion unifi/Dockerfile
Expand Up @@ -88,7 +88,7 @@ RUN apt-get update && apt-get install -y \

# unifi version
# From: https://www.ubnt.com/download/unifi/
ENV UNIFI_VERSION "5.10.20"
ENV UNIFI_VERSION "5.10.23"

# install unifi
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion vault/Dockerfile
Expand Up @@ -14,7 +14,7 @@ RUN apk add --no-cache \
yarn \
zip

ENV VAULT_VERSION v1.1.0-beta2
ENV VAULT_VERSION v1.1.2

RUN go get github.com/hashicorp/vault

Expand Down
11 changes: 4 additions & 7 deletions watchtower/Dockerfile
Expand Up @@ -10,16 +10,13 @@ RUN apk --no-cache add \
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go

ENV WATCHTOWER_VERSION v0.3.0
ENV WATCHTOWER_VERSION v0.3.5

RUN git clone --depth 1 --branch ${WATCHTOWER_VERSION} https://github.com/v2tec/watchtower /go/src/github.com/v2tec/watchtower
RUN git clone --depth 1 --branch ${WATCHTOWER_VERSION} https://github.com/containrrr/watchtower /go/src/github.com/containrrr/watchtower

RUN go get github.com/Masterminds/glide
WORKDIR /go/src/github.com/containrrr/watchtower

WORKDIR /go/src/github.com/v2tec/watchtower

RUN glide install
RUN go build -o /usr/bin/watchtower
RUN GO111MODULE=on go build -o /usr/bin/watchtower

FROM alpine:latest
COPY --from=builder /usr/bin/watchtower /usr/bin/watchtower
Expand Down
2 changes: 1 addition & 1 deletion wireguard/install/Dockerfile
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache \
libmnl-dev

# https://git.zx2c4.com/WireGuard/refs/
ENV WIREGUARD_VERSION 0.0.20190227
ENV WIREGUARD_VERSION 0.0.20190406

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
Expand Down
2 changes: 1 addition & 1 deletion znc/Dockerfile
Expand Up @@ -22,7 +22,7 @@ RUN adduser -u 1001 -D user \

ENV LANG C.UTF-8

ENV ZNC_VERSION 1.7.2
ENV ZNC_VERSION 1.7.3

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
Expand Down

0 comments on commit e3b1102

Please sign in to comment.