Skip to content

Commit

Permalink
update etcd to 2.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyklyukin committed May 29, 2015
1 parent ba4c0af commit 58f0231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgres-appliance/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ RUN apt-get install python-pip python-dev libxml2-dev libxslt-dev libffi-dev lzo
RUN pip install six --upgrade
RUN pip install wal-e

ENV ETCDVERSION 2.0.9
ENV ETCDVERSION 2.0.11
# install etcd
RUN apt-get install curl -y
RUN curl -L https://github.com/coreos/etcd/releases/download/v${ETCDVERSION}/etcd-v${ETCDVERSION}-linux-amd64.tar.gz -o etcd-v${ETCDVERSION}-linux-amd64.tar.gz && tar vzxf etcd-v${ETCDVERSION}-linux-amd64.tar.gz && cp etcd-v${ETCDVERSION}-linux-amd64/etcd* /bin/
RUN RUN curl -L https://github.com/coreos/etcd/releases/download/v${ETCDVERSION}/etcd-v${ETCDVERSION}-linux-amd64.tar.gz | tar xz -C /bin --strip=1 --wildcards --no-anchored etcd etcdctl

# Install debug tooling
RUN apt-get install vim jq -y
Expand Down

0 comments on commit 58f0231

Please sign in to comment.