mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
20 lines
943 B
Docker
20 lines
943 B
Docker
FROM quay.io/prometheus/busybox:latest
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
|
|
|
COPY prometheus /bin/prometheus
|
|
COPY promtool /bin/promtool
|
|
COPY documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml
|
|
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/
|
|
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
WORKDIR /prometheus
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
|
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \
|
|
"-storage.local.path=/prometheus", \
|
|
"-web.console.libraries=/usr/share/prometheus/console_libraries", \
|
|
"-web.console.templates=/usr/share/prometheus/consoles" ]
|