diff --git a/Cloud/prometheus/3.3.1/24.03-lts-sp1/Dockerfile b/Cloud/prometheus/3.3.1/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..8f96037ca567a978445c76580fa38b7fa69958aa --- /dev/null +++ b/Cloud/prometheus/3.3.1/24.03-lts-sp1/Dockerfile @@ -0,0 +1,32 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=3.3.1 + +RUN yum -y update && yum -y install shadow-utils && yum clean all && \ + curl -fSL --output prometheus.tar.gz https://github.com/prometheus/prometheus/releases/download/v${VERSION}/prometheus-${VERSION}.linux-${TARGETARCH}.tar.gz && \ + mkdir /prometheus && tar -zxvf prometheus.tar.gz -C /prometheus --strip-components 1 && \ + rm -f prometheus.tar.gz + +RUN mkdir -p /etc/prometheus/ /usr/share/prometheus/ && \ + mv /prometheus/prometheus /bin/prometheus && \ + mv /prometheus/promtool /bin/promtool && \ + mv /prometheus/prometheus.yml /etc/prometheus/prometheus.yml && \ + mv /prometheus/LICENSE /LICENSE && \ + mv /prometheus/NOTICE /NOTICE && \ + rm -rf /prometheus/ + +WORKDIR /prometheus +RUN groupadd -r prometheus && useradd -r -g prometheus prometheus && \ + ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/ && \ + chown -R prometheus:prometheus /etc/prometheus /prometheus + +USER prometheus +EXPOSE 9090 +VOLUME [ "/prometheus" ] +ENTRYPOINT [ "/bin/prometheus" ] +CMD [ "--config.file=/etc/prometheus/prometheus.yml", \ + "--storage.tsdb.path=/prometheus", \ + "--web.console.libraries=/usr/share/prometheus/console_libraries", \ + "--web.console.templates=/usr/share/prometheus/consoles" ] diff --git a/Cloud/prometheus/meta.yml b/Cloud/prometheus/meta.yml index ac624dce90d013e8ac3a3c37b2260babbc1c0741..ad82884ac3ca5f2e8e463e2e4b54ea667b51d27a 100644 --- a/Cloud/prometheus/meta.yml +++ b/Cloud/prometheus/meta.yml @@ -39,4 +39,6 @@ 3.0.0-oe2203sp1: path: 3.0.0/22.03-lts-sp1/Dockerfile 3.2.1-oe2403lts: - path: Cloud/prometheus/3.2.1/24.03-lts/Dockerfile \ No newline at end of file + path: Cloud/prometheus/3.2.1/24.03-lts/Dockerfile +3.3.1-oe2403sp1: + path: Cloud/prometheus/3.3.1/24.03-lts-sp1/Dockerfile \ No newline at end of file