mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
17 lines
405 B
Docker
17 lines
405 B
Docker
FROM ubuntu:xenial
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
RUN apt-get -y update
|
|
RUN apt-get -y install collectd curl python-pip
|
|
|
|
# add a fake mtab for host disk stats
|
|
ADD etc_mtab /etc/mtab
|
|
|
|
ADD collectd.conf.tpl /etc/collectd/collectd.conf.tpl
|
|
|
|
RUN pip install envtpl
|
|
ADD start_container /usr/bin/start_container
|
|
RUN chmod +x /usr/bin/start_container
|
|
CMD start_container
|