mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-25 02:04:06 +02:00
add influxdb
This commit is contained in:
parent
26e6d85a60
commit
299dba4474
19
influxdb/Dockerfile
Normal file
19
influxdb/Dockerfile
Normal 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
6
influxdb/README.md
Normal 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.
|
Loading…
Reference in New Issue
Block a user