mirror of
https://git.cloudron.io/cloudron/prometheus-server-app.git
synced 2024-11-21 16:01:03 +00:00
24 lines
859 B
Docker
24 lines
859 B
Docker
FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4
|
|
|
|
EXPOSE 3000
|
|
|
|
# configure apache
|
|
RUN rm /etc/apache2/sites-enabled/*
|
|
RUN sed -e 's,^ErrorLog.*,ErrorLog "|/bin/cat",' -i /etc/apache2/apache2.conf
|
|
RUN a2disconf other-vhosts-access-log
|
|
ADD apache/prometheus.conf /etc/apache2/sites-enabled/prometheus.conf
|
|
RUN echo "Listen 8000" > /etc/apache2/ports.conf
|
|
RUN a2enmod ldap authnz_ldap proxy proxy_http rewrite
|
|
|
|
# install Prometheus
|
|
RUN mkdir -p /usr/local/bin/prometheus && \
|
|
cd /usr/local/bin && \
|
|
wget -c https://github.com/prometheus/prometheus/releases/download/v2.22.0/prometheus-2.22.0.linux-amd64.tar.gz && \
|
|
tar xvfz prometheus-*.tar.gz && \
|
|
rm -rf prometheus-*.tar.gz && \
|
|
mv prometheus-*/* prometheus && \
|
|
rm -rf prometheus-*
|
|
|
|
COPY start.sh /app/pkg/
|
|
|
|
CMD [ "/app/pkg/start.sh" ]
|