init add grafana
This commit is contained in:
parent
69b519cef1
commit
895dfc1e89
1 changed files with 26 additions and 0 deletions
26
docker/grafana/docker-compose.yml
Normal file
26
docker/grafana/docker-compose.yml
Normal file
|
@ -0,0 +1,26 @@
|
|||
services:
|
||||
prometheus:
|
||||
image: prom/prometheus:v2.54.1
|
||||
container_name: prometheus
|
||||
command:
|
||||
- '--config.file=/etc/prometheus/prometheus.yml'
|
||||
ports:
|
||||
- 9090:9090
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /docker/appdata/prometheus:/etc/prometheus
|
||||
- prom_data:/prometheus
|
||||
grafana:
|
||||
image: grafana/grafana:11.2.2
|
||||
container_name: grafana
|
||||
ports:
|
||||
- 3000:3000
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- GF_SECURITY_ADMIN_USER=mafyuh
|
||||
- GF_SECURITY_ADMIN_PASSWORD=$GF_SECURITY_ADMIN_PASSWORD
|
||||
volumes:
|
||||
- /docker/appdata/grafana:/etc/grafana/provisioning/datasources
|
||||
|
||||
volumes:
|
||||
prom_data:
|
Loading…
Reference in a new issue