mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-04 06:31:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			178 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			178 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM postgres:10
 | 
						|
 | 
						|
ENV POSTGRES_USER postgres
 | 
						|
 | 
						|
ADD ./config/sql /config/sql
 | 
						|
ADD ./docker/entrypoint.postgres.sh /entrypoint.sh
 | 
						|
 | 
						|
ENTRYPOINT [ "/entrypoint.sh" ]
 | 
						|
CMD [ "postgres" ]
 |