2016-04-22 12:45:45 -04:00
|
|
|
FROM quay.io/prometheus/busybox:latest
|
2015-06-20 09:14:08 -04:00
|
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
2015-01-12 09:15:26 -05:00
|
|
|
|
2015-12-21 12:09:38 -05:00
|
|
|
COPY prometheus /bin/prometheus
|
|
|
|
|
COPY promtool /bin/promtool
|
|
|
|
|
COPY documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml
|
2016-07-29 09:00:47 -04:00
|
|
|
COPY console_libraries/ /usr/share/prometheus/console_libraries/
|
|
|
|
|
COPY consoles/ /usr/share/prometheus/consoles/
|
|
|
|
|
|
|
|
|
|
RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/
|
2015-01-12 09:15:26 -05:00
|
|
|
|
2014-02-06 11:29:37 -05:00
|
|
|
EXPOSE 9090
|
2015-04-24 10:12:31 -04:00
|
|
|
VOLUME [ "/prometheus" ]
|
2014-02-06 11:29:37 -05:00
|
|
|
WORKDIR /prometheus
|
2015-04-23 15:15:23 -04:00
|
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
2015-05-22 11:08:27 -04:00
|
|
|
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \
|
2015-03-03 18:34:35 -05:00
|
|
|
"-storage.local.path=/prometheus", \
|
2016-07-29 09:00:47 -04:00
|
|
|
"-web.console.libraries=/usr/share/prometheus/console_libraries", \
|
|
|
|
|
"-web.console.templates=/usr/share/prometheus/consoles" ]
|