tech(docker): update influxdb to use latest

This commit is contained in:
bergquist
2016-01-25 20:46:15 +01:00
parent 40088cd4fe
commit 1cac6ecedb
2 changed files with 1 additions and 17 deletions

View File

@@ -1,16 +0,0 @@
# influxdb
FROM ubuntu
RUN mkdir -p /opt/influxdb/shared/data
ADD http://s3.amazonaws.com/influxdb/influxdb_0.8.8_amd64.deb /influx88.deb
RUN dpkg -i /influx88.deb
RUN rm -rf /opt/influxdb/shared/data
ADD config.toml /opt/influxdb/shared/config.toml
EXPOSE 8083 8086 2004
ENTRYPOINT ["/usr/bin/influxdb"]
CMD ["-config=/opt/influxdb/shared/config.toml"]

View File

@@ -1,5 +1,5 @@
influxdb:
build: blocks/influxdb
image: tutum/influxdb:latest
ports:
- "2004:2004"
- "8083:8083"