mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24: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
|
||||
VOLUME [ "/prometheus" ]
|
||||
WORKDIR /prometheus
|
||||
ENTRYPOINT [ "/bin/prometheus" ]
|
||||
CMD [ "--config.file=/etc/prometheus/prometheus.yml", \
|
||||
ENTRYPOINT [ "/bin/prometheus", \
|
||||
"--storage.tsdb.path=/prometheus", \
|
||||
"--web.console.libraries=/usr/share/prometheus/console_libraries", \
|
||||
"--web.console.templates=/usr/share/prometheus/consoles" ]
|
||||
"--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