31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
# The MSI installs a service which is hard to override, so let's use a zip file.
 | 
						|
 | 
						|
FROM microsoft/windowsservercore
 | 
						|
MAINTAINER alexellis2@gmail.com
 | 
						|
 | 
						|
SHELL ["powershell"]
 | 
						|
RUN $ErrorActionPreference = 'Stop'; \
 | 
						|
    wget https://github.com/MSOpenTech/redis/releases/download/win-3.2.100/Redis-x64-3.2.100.zip -OutFile Redis-x64-3.2.100.zip ; \
 | 
						|
    Expand-Archive Redis-x64-3.2.100.zip -dest 'C:\\Program Files\\Redis\\' ; \
 | 
						|
    Remove-Item Redis-x64-3.2.100.zip -Force
 | 
						|
 | 
						|
RUN setx PATH '%PATH%;C:\\Program Files\\Redis\\'
 | 
						|
WORKDIR 'C:\\Program Files\\Redis\\'
 | 
						|
 | 
						|
 | 
						|
 | 
						|
RUN Get-Content redis.windows.conf | Where { $_ -notmatch 'bind 127.0.0.1' } | Set-Content redis.openport.conf ; \
 | 
						|
  Get-Content redis.openport.conf | Where { $_ -notmatch 'protected-mode yes' } | Set-Content redis.unprotected.conf ; \
 | 
						|
  Add-Content redis.unprotected.conf 'protected-mode no' ; \
 | 
						|
    Add-Content redis.unprotected.conf 'bind 0.0.0.0' ; \
 | 
						|
  Get-Content redis.unprotected.conf
 | 
						|
 | 
						|
EXPOSE 6379
 | 
						|
 | 
						|
RUN set-itemproperty -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters' -Name ServerPriorityTimeLimit -Value 0 -Type DWord
 | 
						|
 | 
						|
# Define our command to be run when launching the container
 | 
						|
CMD .\\redis-server.exe .\\redis.unprotected.conf --port 6379 ; \
 | 
						|
    Write-Host Redis Started... ; \
 | 
						|
    while ($true) { Start-Sleep -Seconds 3600 }
 |