mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 03:45:50 +00:00 
			
		
		
		
	There are 2 things to know about prettier: - it's quite pretty most of the time - it's not configurable
		
			
				
	
	
		
			21 lines
		
	
	
		
			658 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			658 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
services:
 | 
						|
  prometheus:
 | 
						|
    image: prom/prometheus
 | 
						|
    ports:
 | 
						|
      - 9090:9090
 | 
						|
    volumes:
 | 
						|
      - ./prometheus.yaml:/etc/prometheus/prometheus.yml
 | 
						|
    command:
 | 
						|
      - "--config.file=/etc/prometheus/prometheus.yml"
 | 
						|
  grafana:
 | 
						|
    image: grafana/grafana
 | 
						|
    ports:
 | 
						|
      - 3000:3000
 | 
						|
    environment:
 | 
						|
      - GF_SECURITY_ADMIN_USER=admin
 | 
						|
      - GF_SECURITY_ADMIN_PASSWORD=grafana
 | 
						|
    volumes:
 | 
						|
      - ./grafana/datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml
 | 
						|
      - ./grafana/dashboard_local.yaml:/etc/grafana/provisioning/dashboards/local.yaml
 | 
						|
      - ./grafana/clio_dashboard.json:/var/lib/grafana/dashboards/clio_dashboard.json
 |