mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
run as prometheus user insted of root
This commit is contained in:
parent
228bfc1bb5
commit
721ed3fb41
|
@ -7,12 +7,17 @@ COPY documentation/examples/prometheus.yml /etc/prometheus/prometheus.yml
|
|||
COPY console_libraries/ /usr/share/prometheus/console_libraries/
|
||||
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/ && \
|
||||
addgroup -g 1000 prometheus && \
|
||||
adduser -s /bin/sh -S -H -u 1000 -G prometheus prometheus && \
|
||||
mkdir -p /prometheus && \
|
||||
chown -R prometheus:prometheus /etc/prometheus /prometheus
|
||||
|
||||
EXPOSE 9090
|
||||
VOLUME [ "/prometheus" ]
|
||||
WORKDIR /prometheus
|
||||
ENTRYPOINT [ "/bin/prometheus" ]
|
||||
USER prometheus
|
||||
CMD [ "-config.file=/etc/prometheus/prometheus.yml", \
|
||||
"-storage.local.path=/prometheus", \
|
||||
"-web.console.libraries=/usr/share/prometheus/console_libraries", \
|
||||
|
|
Loading…
Reference in a new issue