mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 21:54:10 -08:00
Fix Dockerfile entrypoint (#4976)
* Fix Dockerfile entrypoint Fix WORKDIR and use symlink to setup working defaults for config flags. Signed-off-by: Ben Kochie <superq@gmail.com> * Collapse Dockrefile RUNs Signed-off-by: Ben Kochie <superq@gmail.com>
This commit is contained in:
parent
56cda567d9
commit
458455245f
15
Dockerfile
15
Dockerfile
|
@ -7,16 +7,13 @@ COPY documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml
|
||||||
COPY console_libraries/ /usr/share/prometheus/console_libraries/
|
COPY console_libraries/ /usr/share/prometheus/console_libraries/
|
||||||
COPY consoles/ /usr/share/prometheus/consoles/
|
COPY consoles/ /usr/share/prometheus/consoles/
|
||||||
|
|
||||||
RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/
|
RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/ && \
|
||||||
RUN mkdir -p /prometheus && \
|
mkdir -p /prometheus && \
|
||||||
chown -R nobody:nogroup etc/prometheus /prometheus
|
chown -R nobody:nogroup etc/prometheus /prometheus && \
|
||||||
|
ln -s /prometheus /etc/prometheus/data
|
||||||
|
|
||||||
USER nobody
|
USER nobody
|
||||||
EXPOSE 9090
|
EXPOSE 9090
|
||||||
VOLUME [ "/prometheus" ]
|
VOLUME [ "/prometheus" ]
|
||||||
WORKDIR /prometheus
|
WORKDIR /etc/prometheus
|
||||||
ENTRYPOINT [ "/bin/prometheus", \
|
ENTRYPOINT [ "/bin/prometheus" ]
|
||||||
"--storage.tsdb.path=/prometheus", \
|
|
||||||
"--web.console.libraries=/etc/prometheus/console_libraries", \
|
|
||||||
"--web.console.templates=/etc/prometheus/consoles", \
|
|
||||||
"--config.file=/etc/prometheus/prometheus.yml" ]
|
|
||||||
|
|
Loading…
Reference in a new issue