mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	Completely removed usage of the RabbitMQ. Queue now based on Redis channels. Worker process now extracted as separate docker container. Base image upgraded to the 1.8.0 version (PHP 7.2.7 and pcntl extension).
		
			
				
	
	
		
			9 lines
		
	
	
		
			183 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			183 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM phpmyadmin/phpmyadmin:4.7.9-1
 | 
						|
 | 
						|
RUN printf "\n\nrequire('./config.local.php');\n" >> /www/config.inc.php
 | 
						|
 | 
						|
COPY config.local.php /www/
 | 
						|
 | 
						|
ENTRYPOINT [ "/run.sh" ]
 | 
						|
CMD ["phpmyadmin"]
 |