mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-12 16:44:05 -08:00
Included default flags into Dockerfile entrypoint (#4796)
* included default flags into Dockerfile entrypoint Signed-off-by: Junyu Wang <junyuw@berkeley.edu> * keeping style consistent Co-Authored-By: DrakeW <junyuw@berkeley.edu> Signed-off-by: Junyu Wang <junyuw@berkeley.edu> * move prometheus.yml config into entrypoint & point to console template/libraries in etc/prometheus Signed-off-by: Junyu Wang <junyuw@berkeley.edu>
This commit is contained in:
parent
6fa8de132b
commit
2f93fa6292
|
@ -15,8 +15,8 @@ USER nobody
|
||||||
EXPOSE 9090
|
EXPOSE 9090
|
||||||
VOLUME [ "/prometheus" ]
|
VOLUME [ "/prometheus" ]
|
||||||
WORKDIR /prometheus
|
WORKDIR /prometheus
|
||||||
ENTRYPOINT [ "/bin/prometheus" ]
|
ENTRYPOINT [ "/bin/prometheus", \
|
||||||
CMD [ "--config.file=/etc/prometheus/prometheus.yml", \
|
|
||||||
"--storage.tsdb.path=/prometheus", \
|
"--storage.tsdb.path=/prometheus", \
|
||||||
"--web.console.libraries=/usr/share/prometheus/console_libraries", \
|
"--web.console.libraries=/etc/prometheus/console_libraries", \
|
||||||
"--web.console.templates=/usr/share/prometheus/consoles" ]
|
"--web.console.templates=/etc/prometheus/consoles", \
|
||||||
|
"--config.file=/etc/prometheus/prometheus.yml" ]
|
||||||
|
|
Loading…
Reference in a new issue