Small changes in auth for web prometheus.
parent
8ad94180fe
commit
4dc267e11f
|
@ -1,10 +1,12 @@
|
|||
version: '3.7'
|
||||
services:
|
||||
prometheus:
|
||||
command: --config.file=/etc/prometheus/prometheus.yml --web.config.file=/etc/prometheus/prometheus.web.yml --storage.tsdb.path=/prometheus
|
||||
image: 'prom/prometheus'
|
||||
ports:
|
||||
- '9090:9090'
|
||||
volumes:
|
||||
- 'prometheus-config:/etc/prometheus'
|
||||
- 'prometheus-data:/prometheus'
|
||||
networks:
|
||||
- net
|
||||
|
@ -15,7 +17,7 @@ services:
|
|||
- '3000:3000'
|
||||
volumes:
|
||||
- 'grafana-storage:/var/lib/grafana'
|
||||
- 'grafana-provisioning:/etc/grafana/provisioning'
|
||||
- 'grafana_demo1_grafana-provisioning:/etc/grafana/provisioning'
|
||||
networks:
|
||||
- net
|
||||
|
||||
|
@ -24,7 +26,10 @@ networks:
|
|||
driver: bridge
|
||||
|
||||
volumes:
|
||||
grafana-provisioning:
|
||||
grafana_demo1_grafana-provisioning:
|
||||
external:
|
||||
true
|
||||
grafana-storage:
|
||||
prometheus-config:
|
||||
prometheus-data:
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
auth_web_users:
|
||||
admin: "<<bcrypt pass>>"
|
|
@ -3,6 +3,7 @@ services:
|
|||
prometheus:
|
||||
image: 'nginx'
|
||||
volumes:
|
||||
- 'prometheus-config:/etc/prometheus'
|
||||
- 'prometheus-data:/prometheus'
|
||||
|
||||
grafana:
|
||||
|
@ -12,6 +13,7 @@ services:
|
|||
- 'grafana-provisioning:/etc/grafana/provisioning'
|
||||
|
||||
volumes:
|
||||
prometheus-config:
|
||||
grafana-provisioning:
|
||||
grafana-storage:
|
||||
prometheus-data:
|
||||
|
|
Loading…
Reference in New Issue