github.com/aclisp/heapster@v0.19.2-0.20160613100040-51756f899a96/influxdb/Dockerfile (about) 1 FROM ubuntu 2 3 MAINTAINER Vishnu kannan "<vishnuk@google.com>" 4 5 # Install InfluxDB 6 ENV INFLUXDB_VERSION 0.9.6 7 8 RUN apt-get update && apt-get install -y curl && mkdir /app && curl -s -o /app/influxdb_latest_amd64.deb https://s3.amazonaws.com/influxdb/influxdb_${INFLUXDB_VERSION}_amd64.deb && \ 9 dpkg -i /app/influxdb_latest_amd64.deb && \ 10 rm /app/influxdb_latest_amd64.deb 11 12 ENV PATH=/opt/influxdb:$PATH 13 14 ADD config.toml /etc/influxdb.toml 15 16 # admin, http, udp, cluster, graphite, opentsdb, collectd 17 EXPOSE 8083 8086 8086/udp 8088 2003 4242 25826 18 19 VOLUME ["/data"] 20 21 ENTRYPOINT ["influxd", "--config", "/etc/influxdb.toml"]