mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 00:46:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			182 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# bring up containerd
 | 
						|
ulimit -n 1048576
 | 
						|
ulimit -p unlimited
 | 
						|
 | 
						|
printf "\nStarting containerd\n"
 | 
						|
mkdir -p /var/log
 | 
						|
/sbin/start-stop-daemon --start --exec /usr/bin/containerd
 |