mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	Add the memcache(d) Dockerfile
This commit is contained in:
		
							parent
							
								
									4b8d72dec2
								
							
						
					
					
						commit
						8a6119551b
					
				
							
								
								
									
										26
									
								
								dockerfiles/images/memcache/Dockerfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								dockerfiles/images/memcache/Dockerfile
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,26 @@
 | 
			
		||||
FROM ubuntu
 | 
			
		||||
 | 
			
		||||
# Set the file maintainer (your name - the file's author)
 | 
			
		||||
MAINTAINER Borja Burgos <borja@tutum.co>
 | 
			
		||||
 | 
			
		||||
ENV DEBIAN_FRONTEND noninteractive
 | 
			
		||||
 | 
			
		||||
# Update the default application repository sources list
 | 
			
		||||
RUN apt-get update
 | 
			
		||||
 | 
			
		||||
# Install Memcached
 | 
			
		||||
RUN apt-get install -y memcached
 | 
			
		||||
 | 
			
		||||
# Port to expose (default: 11211)
 | 
			
		||||
EXPOSE 11211
 | 
			
		||||
 | 
			
		||||
# Default Memcached run command arguments
 | 
			
		||||
# Change to limit memory when creating container in Tutum 
 | 
			
		||||
CMD ["-m", "64"]
 | 
			
		||||
 | 
			
		||||
# Set the user to run Memcached daemon
 | 
			
		||||
USER daemon
 | 
			
		||||
 | 
			
		||||
# Set the entrypoint to memcached binary
 | 
			
		||||
ENTRYPOINT memcached
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user