You've already forked postgres_exporter
							
							
				mirror of
				https://github.com/prometheus-community/postgres_exporter.git
				synced 2025-11-03 07:53:12 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			178 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			178 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM debian:10-slim
 | 
						|
RUN useradd -u 20001 postgres_exporter
 | 
						|
 | 
						|
USER postgres_exporter
 | 
						|
 | 
						|
ARG binary
 | 
						|
 | 
						|
COPY $binary /postgres_exporter
 | 
						|
 | 
						|
EXPOSE 9187
 | 
						|
 | 
						|
ENTRYPOINT [ "/postgres_exporter" ]
 |