1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-25 02:04:06 +02:00

add influxdb

This commit is contained in:
kev 2015-08-16 01:56:52 +08:00
parent 26e6d85a60
commit 299dba4474
2 changed files with 25 additions and 0 deletions

19
influxdb/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
#
# Dockerfile for influxdb
#
FROM debian:jessie
MAINTAINER kev <noreply@datageek.info>
RUN apt-get update \
&& apt-get install -y wget \
&& wget https://s3.amazonaws.com/influxdb/influxdb_0.9.2_amd64.deb \
&& dpkg -i influxdb_0.9.2_amd64.deb \
&& sed -i '/^reporting-disabled/s/false/true/' /etc/opt/influxdb/influxdb.conf \
&& rm influxdb_0.9.2_amd64.deb \
&& apt-get purge --auto-remove -y wget \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 8083 8086 8088
CMD ["/opt/influxdb/influxd", "-config", "/etc/opt/influxdb/influxdb.conf"]

6
influxdb/README.md Normal file
View File

@ -0,0 +1,6 @@
influxdb
========
`InfluxDB` is an open source distributed time series database with no external
dependencies. It's useful for recording metrics, events, and performing
analytics.