2015-01-07 17:54:31 +08:00
|
|
|
FROM ubuntu:14.04
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y wget collectd nodejs supervisor
|
2015-01-15 13:01:04 +08:00
|
|
|
|
2015-01-07 17:54:31 +08:00
|
|
|
RUN wget https://raw.githubusercontent.com/bpaquet/collectd-influxdb-proxy/master/proxy.js -P /usr/local/bin
|
|
|
|
RUN wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb -P /tmp
|
2015-01-15 13:01:04 +08:00
|
|
|
RUN wget http://grafanarel.s3.amazonaws.com/grafana-1.9.1.tar.gz -P /var/www
|
|
|
|
|
2015-01-07 17:54:31 +08:00
|
|
|
RUN dpkg -i /tmp/influxdb_latest_amd64.deb
|
2015-01-15 13:01:04 +08:00
|
|
|
RUN tar xzf /var/www/grafana-1.9.1.tar.gz -C /var/www
|
2015-01-07 17:54:31 +08:00
|
|
|
|
|
|
|
CMD supervisord -n
|