Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(influxdb): upgrade influxdb and telegraph to 1.0 #140

Merged
merged 1 commit into from
Sep 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion influxdb/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY . /

RUN curl -SL -o /home/influxdb/envtpl https://github.com/arschles/envtpl/releases/download/0.2.3/envtpl_linux_amd64 \
&& chmod +x /home/influxdb/envtpl \
&& curl -SL -o /tmp/influxdb.deb https://dl.influxdata.com/influxdb/releases/influxdb_1.0.0-beta1_amd64.deb \
&& curl -SL -o /tmp/influxdb.deb https://dl.influxdata.com/influxdb/releases/influxdb_1.0.0_amd64.deb \
&& dpkg -i /tmp/influxdb.deb \
&& rm /tmp/influxdb.deb \
&& mkdir -p /data \
Expand Down
6 changes: 4 additions & 2 deletions telegraf/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ FROM quay.io/deis/base:0.3.1
COPY . /

RUN mkdir -p /usr/local/bin/ \
&& curl -sSL -o /usr/bin/telegraf https://storage.googleapis.com/telegraf/telegraf \
&& chmod +x /usr/bin/telegraf \
&& curl -SL -o /tmp/telegraf.deb https://dl.influxdata.com/telegraf/releases/telegraf_1.0.0_amd64.deb \
&& dpkg -i /tmp/telegraf.deb \
&& rm /tmp/telegraf.deb \
&& chmod +x /usr/bin/telegraf \
&& curl -sSL -o /usr/bin/envtpl https://github.com/arschles/envtpl/releases/download/0.2.3/envtpl_linux_amd64 \
&& chmod +x /usr/bin/envtpl

Expand Down