mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
13 lines
477 B
Docker
13 lines
477 B
Docker
FROM ubuntu:13.10
|
|
MAINTAINER Prometheus Team <prometheus-developers@googlegroups.com>
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
WORKDIR /prometheus
|
|
|
|
ENTRYPOINT [ "/prometheus-src/prometheus", "-config.file=/prometheus.conf" ]
|
|
RUN apt-get update && apt-get install -yq make git curl sudo mercurial vim-common
|
|
ADD . /prometheus-src
|
|
RUN cd /prometheus-src && make tools binary
|
|
ADD ./documentation/examples/prometheus.conf /prometheus.conf
|
|
|