You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							37 lines
						
					
					
						
							703 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							37 lines
						
					
					
						
							703 B
						
					
					
				
								# See https://docs.docker.com/engine/reference/builder/#dockerignore-file for more about ignoring files.
							 | 
						|
								
							 | 
						|
								# Ignore git directory.
							 | 
						|
								/.git/
							 | 
						|
								
							 | 
						|
								# Ignore bundler config.
							 | 
						|
								/.bundle
							 | 
						|
								
							 | 
						|
								# Ignore all environment files (except templates).
							 | 
						|
								/.env*
							 | 
						|
								!/.env*.erb
							 | 
						|
								
							 | 
						|
								# Ignore all default key files.
							 | 
						|
								/config/master.key
							 | 
						|
								/config/credentials/*.key
							 | 
						|
								
							 | 
						|
								# Ignore all logfiles and tempfiles.
							 | 
						|
								/log/*
							 | 
						|
								/tmp/*
							 | 
						|
								!/log/.keep
							 | 
						|
								!/tmp/.keep
							 | 
						|
								
							 | 
						|
								# Ignore pidfiles, but keep the directory.
							 | 
						|
								/tmp/pids/*
							 | 
						|
								!/tmp/pids/.keep
							 | 
						|
								
							 | 
						|
								# Ignore storage (uploaded files in development and any SQLite databases).
							 | 
						|
								/storage/*
							 | 
						|
								!/storage/.keep
							 | 
						|
								/tmp/storage/*
							 | 
						|
								!/tmp/storage/.keep
							 | 
						|
								
							 | 
						|
								# Ignore assets.
							 | 
						|
								/node_modules/
							 | 
						|
								/app/assets/builds/*
							 | 
						|
								!/app/assets/builds/.keep
							 | 
						|
								/public/assets
							 |