1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/influxdb/Dockerfile
2015-08-16 02:35:36 +08:00

21 lines
591 B
Docker

#
# 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 \
&& apt-get purge --auto-remove -y wget \
&& rm -rf influxdb_0.9.2_amd64.deb \
/var/lib/apt/lists/*
VOLUME /var/opt/influxdb/
EXPOSE 8083 8086 8088
CMD ["/opt/influxdb/influxd", "-config", "/etc/opt/influxdb/influxdb.conf"]