mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
24 lines
866 B
Docker
24 lines
866 B
Docker
FROM sdurrheimer/alpine-glibc
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apk add --update -t build-deps git mercurial bzr make \
|
|
&& make build \
|
|
&& cp prometheus promtool /bin/ \
|
|
&& mkdir -p /etc/prometheus \
|
|
&& mv ./documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml \
|
|
&& mv ./console_libraries/ ./consoles/ /etc/prometheus/ \
|
|
&& apk del --purge build-deps \
|
|
&& rm -rf /app /var/cache/apk/*
|
|
|
|
EXPOSE 9090
|
|
VOLUME [ "/prometheus" ]
|
|
WORKDIR /prometheus
|
|
ENTRYPOINT [ "/bin/prometheus" ]
|
|
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \
|
|
"-storage.local.path=/prometheus", \
|
|
"-web.console.libraries=/etc/prometheus/console_libraries", \
|
|
"-web.console.templates=/etc/prometheus/consoles" ]
|